/* ==========================================================
   1. CUSTOM PROPERTIES (design tokens)
   ========================================================== */
:root {
  --bg-base:       #07070f;
  --bg-surface:    #0e0e1a;
  --bg-elevated:   #161625;
  --border:        #1e1e35;
  --border-bright: rgba(124, 58, 237, 0.4);

  --brand-purple: #7c3aed;
  --brand-blue:   #3b82f6;
  --brand-cyan:   #06b6d4;

  --gradient-main: linear-gradient(135deg, #7c3aed, #3b82f6, #06b6d4);
  --gradient-text: linear-gradient(90deg, #a78bfa, #60a5fa, #67e8f9);
  --glow-purple:   radial-gradient(circle, rgba(124,58,237,0.5) 0%, transparent 70%);

  --text-primary:   #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted:     #475569;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --transition:  all 0.2s ease;

  --max-width: 1200px;
  --section-padding: 80px 24px;
}

/* ==========================================================
   1b. LIGHT THEME TOKENS
   ========================================================== */
html[data-theme="light"] {
  --bg-base:       #f6f7ff;
  --bg-surface:    #ffffff;
  --bg-elevated:   #eef0ff;
  --border:        #e2e3f0;
  --border-bright: rgba(124, 58, 237, 0.3);

  --gradient-text: linear-gradient(90deg, #7c3aed, #4f46e5, #0369a1);

  --text-primary:   #0d0b1e;
  --text-secondary: #4a4868;
  --text-muted:     #7e7c9e;

  --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
}

/* Smooth transitions when user manually switches (not on page load) */
html.fcs-theme-animated,
html.fcs-theme-animated * {
  transition:
    background-color 0.35s ease,
    border-color     0.35s ease,
    color            0.35s ease,
    box-shadow       0.35s ease !important;
}

/* ==========================================================
   2. RESET & BASE
   ========================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background: var(--bg-base);
  color: var(--text-secondary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ==========================================================
   3. TYPOGRAPHY
   ========================================================== */
.fcs-display {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h1, .fcs-h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.015em;
}

h2, .fcs-h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-primary);
}

h3, .fcs-h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

p { color: var(--text-secondary); line-height: 1.7; }

.fcs-gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fcs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  color: #a78bfa;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ==========================================================
   4. LAYOUT UTILITIES
   ========================================================== */
.fcs-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.fcs-section { padding: var(--section-padding); }
.fcs-section--surface { background: var(--bg-surface); }
.fcs-section--center { text-align: center; }

.fcs-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.fcs-section-header p {
  margin-top: 14px;
  font-size: 17px;
}

/* ==========================================================
   5. BUTTONS
   ========================================================== */
.fcs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
}

.fcs-btn--primary {
  background: var(--gradient-main);
  background-size: 200% 200%;
  color: #fff;
  box-shadow: 0 0 24px rgba(124,58,237,0.3);
}
.fcs-btn--primary:hover {
  background-position: right center;
  box-shadow: 0 0 36px rgba(124,58,237,0.5);
  transform: translateY(-1px);
}

.fcs-btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid #2d2d4e;
}
.fcs-btn--secondary:hover {
  border-color: rgba(124,58,237,0.5);
  background: rgba(124,58,237,0.06);
}

.fcs-btn--sm { padding: 8px 18px; font-size: 13px; }

/* ==========================================================
   6. CARDS
   ========================================================== */
.fcs-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: border-color 0.2s ease;
}
.fcs-card:hover { border-color: var(--border-bright); }

.fcs-card__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(124,58,237,0.25), rgba(59,130,246,0.15));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

.fcs-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.fcs-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================
   7. FEATURE GRID
   ========================================================== */
.fcs-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 900px) { .fcs-feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .fcs-feature-grid { grid-template-columns: 1fr; } }

/* ==========================================================
   8. DEEP-DIVE SECTION
   ========================================================== */
.fcs-deepdive {
  display: flex;
  align-items: center;
  gap: 64px;
  padding: var(--section-padding);
}
.fcs-deepdive.fcs-deepdive--reverse { flex-direction: row-reverse; }

.fcs-deepdive__text { flex: 1; }
.fcs-deepdive__visual {
  flex: 1;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.fcs-deepdive__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.06), transparent);
}

.fcs-deepdive__title { margin-bottom: 12px; }
.fcs-deepdive__desc  { margin-bottom: 20px; font-size: 16px; }

.fcs-deepdive__bullets { display: flex; flex-direction: column; gap: 10px; }
.fcs-deepdive__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.fcs-deepdive__bullets li::before {
  content: '✦';
  color: var(--brand-purple);
  font-size: 10px;
  margin-top: 4px;
  flex-shrink: 0;
}

.fcs-deepdive__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #a78bfa;
  transition: gap 0.2s;
}
.fcs-deepdive__link:hover { gap: 10px; }

@media (max-width: 860px) {
  .fcs-deepdive, .fcs-deepdive.fcs-deepdive--reverse { flex-direction: column; gap: 32px; }
  .fcs-deepdive__visual { width: 100%; min-height: 240px; }
}

/* ==========================================================
   9. COMPARISON TABLE
   ========================================================== */
.fcs-compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
}
.fcs-compare-table th {
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.fcs-compare-table th.fcs-compare-table__highlight {
  color: #a78bfa;
  border-bottom-color: rgba(124,58,237,0.4);
}
.fcs-compare-table td {
  padding: 13px 18px;
  font-size: 13px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(30,30,53,0.6);
}
.fcs-compare-table tr:hover td { background: var(--bg-surface); }
.fcs-compare-table td.fcs-compare-table__highlight { color: var(--text-primary); font-weight: 600; }
.fcs-check  { color: #34d399; font-weight: 700; }
.fcs-cross  { color: #f43f5e; }
.fcs-partial{ color: #f59e0b; }

/* ==========================================================
   10. PRICING CARDS
   ========================================================== */
.fcs-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.fcs-price-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.fcs-price-card--popular {
  border-color: rgba(124,58,237,0.5);
  background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(59,130,246,0.04));
}

.fcs-price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-main);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.fcs-price-name   { font-size: 13px; font-weight: 700; color: var(--text-secondary); margin-bottom: 8px; }
.fcs-price-amount { font-size: 36px; font-weight: 800; color: var(--text-primary); line-height: 1; }
.fcs-price-amount span { font-size: 14px; font-weight: 400; color: var(--text-muted); }
.fcs-price-desc   { font-size: 12px; color: var(--text-muted); margin: 8px 0 20px; }

.fcs-price-btn {
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  background: var(--gradient-main);
  color: #fff;
  transition: var(--transition);
}
.fcs-price-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.fcs-price-card:not(.fcs-price-card--popular) .fcs-price-btn {
  background: transparent;
  border: 1px solid #2d2d4e;
  color: var(--text-secondary);
}

.fcs-price-features { display: flex; flex-direction: column; gap: 8px; }
.fcs-price-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 860px) { .fcs-pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; } }

/* ==========================================================
   11. TESTIMONIALS
   ========================================================== */
.fcs-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.fcs-testi-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
}
.fcs-testi-stars  { color: #f59e0b; font-size: 13px; margin-bottom: 12px; }
.fcs-testi-quote  { font-size: 13px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.fcs-testi-author { display: flex; align-items: center; gap: 10px; }
.fcs-testi-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gradient-main);
  overflow: hidden; flex-shrink: 0;
}
.fcs-testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.fcs-testi-name { font-size: 12px; font-weight: 700; color: var(--text-primary); }
.fcs-testi-role { font-size: 11px; color: var(--text-muted); }

@media (max-width: 860px) { .fcs-testi-grid { grid-template-columns: 1fr; } }

/* ==========================================================
   12. CTA BANNER
   ========================================================== */
.fcs-cta-banner {
  background: linear-gradient(135deg, rgba(124,58,237,0.18), rgba(59,130,246,0.1));
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fcs-cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 300px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.fcs-cta-banner h2  { position: relative; margin-bottom: 12px; }
.fcs-cta-banner p   { position: relative; margin-bottom: 28px; font-size: 16px; }
.fcs-cta-banner .fcs-btn { position: relative; }


/* ==========================================================
   14. FOOTER
   ========================================================== */
.fcs-footer {
  background: #050509;
  border-top: 1px solid var(--border);
  padding: 56px 24px 24px;
}
.fcs-footer__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.fcs-footer__brand {
  font-size: 18px;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}
.fcs-footer__tagline { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.fcs-footer__col-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.fcs-footer__col a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  transition: color 0.2s;
}
.fcs-footer__col a:hover { color: var(--text-secondary); }
.fcs-footer__bottom {
  max-width: var(--max-width);
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.fcs-footer__copy { font-size: 12px; color: #2d3748; }
.fcs-footer__legal { display: flex; gap: 20px; }
.fcs-footer__legal a { font-size: 12px; color: #2d3748; transition: color 0.2s; }
.fcs-footer__legal a:hover { color: var(--text-muted); }

@media (max-width: 860px) {
  .fcs-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .fcs-footer__grid { grid-template-columns: 1fr; }
}

/* ==========================================================
   15. RESPONSIVE BASE
   ========================================================== */
@media (max-width: 768px) {
  :root { --section-padding: 56px 20px; }
  .fcs-container { padding: 0 16px; }
}

/* ==========================================================
   16. NAV
   ========================================================== */
.fcs-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(7,7,15,0.7);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}
.fcs-nav--scrolled {
  background: rgba(7,7,15,0.92);
  border-bottom-color: var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.fcs-nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.fcs-nav__logo {
  font-size: 17px;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}
.fcs-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.fcs-nav__link {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.fcs-nav__link:hover { color: var(--text-primary); background: rgba(255,255,255,0.04); }
.fcs-nav__chevron { font-size: 10px; margin-left: 2px; }
.fcs-nav__cta { margin-left: auto; }

/* Dropdown */
.fcs-nav__dropdown-trigger { position: relative; }
.fcs-nav__dropdown-trigger:hover .fcs-nav__dropdown { display: block; }
.fcs-nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px;
  padding-top: 16px;
  box-shadow: var(--shadow-card);
  z-index: 100;
}
.fcs-nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-secondary);
  transition: background 0.15s, color 0.15s;
}
.fcs-nav__dropdown-item:hover { background: var(--bg-elevated); color: var(--text-primary); }
.fcs-nav__dropdown-item strong { display: block; font-size: 13px; color: var(--text-primary); }
.fcs-nav__dropdown-item small  { display: block; font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.fcs-nav__dropdown-icon { font-size: 18px; flex-shrink: 0; }
.fcs-nav__dropdown-item--all {
  border-top: 1px solid var(--border);
  margin-top: 4px;
  padding-top: 12px;
  color: #a78bfa;
  font-weight: 600;
  font-size: 12px;
}

/* Hamburger */
.fcs-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.fcs-nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu */
.fcs-nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg-base);
  padding: 80px 24px 40px;
  flex-direction: column;
  overflow-y: auto;
}
.fcs-nav__mobile--open { display: flex; }
.fcs-nav__mobile-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fcs-nav__mobile-inner a {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

/* Main content padding for fixed nav */
.fcs-main { padding-top: 64px; }

/* ── Light-mode nav overrides ── */
html[data-theme="light"] .fcs-nav {
  background: rgba(246,247,255,0.82);
}
html[data-theme="light"] .fcs-nav--scrolled {
  background: rgba(255,255,255,0.96);
  border-bottom-color: var(--border);
}
html[data-theme="light"] .fcs-nav__link { color: var(--text-secondary); }
html[data-theme="light"] .fcs-nav__link:hover { color: var(--text-primary); background: rgba(0,0,0,0.04); }
html[data-theme="light"] .fcs-nav__dropdown { background: #fff; box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
html[data-theme="light"] .fcs-nav__dropdown-item:hover { background: var(--bg-elevated); }
html[data-theme="light"] .fcs-nav__mobile { background: #fff; }
html[data-theme="light"] .fcs-nav__toggle span { background: var(--text-secondary); }

/* ── Theme toggle button ── */
.fcs-theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--text-secondary);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.fcs-theme-toggle:hover {
  background: rgba(255,255,255,0.15);
  color: var(--text-primary);
}
html[data-theme="light"] .fcs-theme-toggle {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.1);
}
html[data-theme="light"] .fcs-theme-toggle:hover {
  background: rgba(0,0,0,0.09);
}

/* Show sun in dark mode (to switch to light), moon in light mode (to switch to dark) */
html[data-theme="dark"]  .fcs-theme-toggle__moon { display: none; }
html[data-theme="light"] .fcs-theme-toggle__sun  { display: none; }
/* Fallback when no data-theme set yet (default is dark, so hide moon) */
:root:not([data-theme]) .fcs-theme-toggle__moon { display: none; }

/* Mobile variant */
.fcs-theme-toggle--mobile {
  width: auto;
  gap: 10px;
  padding: 12px 0;
  border-radius: 0;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  justify-content: flex-start;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 4px;
}
.fcs-theme-toggle--mobile:hover { background: none; color: var(--brand-purple); }
.fcs-theme-toggle__label { font-size: 20px; font-weight: 600; }

@media (max-width: 768px) {
  .fcs-nav__links, .fcs-nav__cta { display: none; }
  .fcs-nav__toggle { display: flex; }
  .fcs-theme-toggle:not(.fcs-theme-toggle--mobile) { display: none; }
}

/* ── WordPress admin bar offset ── */
/* WP adds class="admin-bar" to <body> when bar is visible */
.admin-bar .fcs-nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .fcs-nav { top: 46px; }
}
@media screen and (max-width: 600px) {
  /* Admin bar collapses below 600 px */
  .admin-bar .fcs-nav { top: 0; }
}

/* ==========================================================
   17. HERO
   ========================================================== */
@property --fcs-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }

.fcs-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 60px;
}

/* WebGL canvas */
#fcs-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Overlays */
.fcs-hero__grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}
.fcs-hero__vign {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(ellipse 120% 100% at 50% 50%, transparent 35%, rgba(0,0,0,.5) 100%);
}
.fcs-hero__dark {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: rgba(4,3,12,.42);
}

/* ── FLOATING FIELD CARDS ── */
.fcs-fc {
  position: absolute; z-index: 6;
  background: rgba(8,6,22,.72);
  border: 1px solid rgba(139,92,246,.18);
  border-radius: 14px;
  backdrop-filter: blur(28px) saturate(160%);
  box-shadow: 0 0 0 1px rgba(255,255,255,.04), 0 8px 40px rgba(0,0,0,.5);
  padding: 11px 13px;
  pointer-events: none;
}
.fcs-fc::before {
  content: ''; position: absolute; inset: 0; border-radius: 14px;
  background: linear-gradient(135deg, rgba(139,92,246,.07), transparent 55%);
  pointer-events: none;
}
.fcs-fc-lbl {
  font-size: 9px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(167,139,250,.85); margin-bottom: 8px; display: flex; align-items: center; gap: 5px;
}
#fcs-fc-sig   { width: 160px; left: 5%;  top: 12%; animation: fcs-fl1  9s   ease-in-out infinite; }
#fcs-fc-cal   { width: 165px; right: 7%; top: 9%;  animation: fcs-fl2  11s  ease-in-out infinite; }
#fcs-fc-stars { width: 155px; left: 2%;  top: 48%; animation: fcs-fl3  10s  ease-in-out infinite; }
#fcs-fc-voice { width: 160px; left: 3%;  top: 74%; animation: fcs-fl4  8s   ease-in-out infinite; }
#fcs-fc-file  { width: 160px; right: 5%; top: 66%; animation: fcs-fl5  12s  ease-in-out infinite; }
#fcs-fc-dyn   { width: 162px; right: 4%; top: 36%; animation: fcs-fl6  9.5s ease-in-out infinite; }
#fcs-fc-con   { width: 162px; left: 39%; top: 84%; animation: fcs-fl7  10.5s ease-in-out infinite; }

/* Field card internals */
.fcs-fc .mini-cal { font-size: 7.5px; }
.fcs-fc .cal-hdr  { display: flex; justify-content: space-between; color: #94a3b8; margin-bottom: 5px; font-weight: 600; }
.fcs-fc .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; }
.fcs-fc .cd       { width: 17px; height: 17px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: #475569; font-size: 7px; }
.fcs-fc .cd.avail { color: #94a3b8; }
.fcs-fc .cd.sel   { background: #8b5cf6; color: #fff; box-shadow: 0 0 10px rgba(139,92,246,.6); }
.fcs-fc .cd.today { border: 1px solid rgba(139,92,246,.5); color: #a78bfa; }
.fcs-fc .stars-wrap { display: flex; gap: 4px; }
.fcs-fc .star     { font-size: 19px; color: rgba(255,255,255,.12); transition: color .25s, text-shadow .25s, transform .2s; }
.fcs-fc .star.lit { color: #f59e0b; text-shadow: 0 0 12px rgba(245,158,11,.75); transform: scale(1.14); }
.fcs-fc .wv-wrap  { display: flex; align-items: center; gap: 2px; height: 34px; justify-content: center; }
.fcs-fc .wv-b     { width: 3px; border-radius: 2px; background: linear-gradient(to top, #7c3aed, #ec4899); }
.fcs-fc .fdrop    { border: 1px dashed rgba(139,92,246,.3); border-radius: 8px; padding: 7px; text-align: center; font-size: 8px; color: #64748b; min-height: 52px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; transition: border-color .4s; }
.fcs-fc .fpbar    { width: 82%; height: 3px; background: rgba(255,255,255,.08); border-radius: 2px; overflow: hidden; margin-top: 4px; }
.fcs-fc .fpfill   { height: 100%; background: linear-gradient(90deg, #7c3aed, #ec4899); width: 0%; transition: width .06s linear; }
.fcs-fc .dyn-hdr  { font-size: 7.5px; color: #475569; display: flex; align-items: center; gap: 4px; margin-bottom: 4px; }
.fcs-fc .dyn-it   { padding: 4px 7px; border-radius: 5px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); font-size: 8px; color: #64748b; display: flex; align-items: center; gap: 5px; opacity: 0; transform: translateX(-6px); transition: opacity .35s, transform .35s; margin-bottom: 3px; }
.fcs-fc .dyn-it.vis { opacity: 1; transform: translateX(0); }
.fcs-fc .dyn-dot  { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.fcs-fc .cb-row   { display: flex; align-items: flex-start; gap: 7px; margin-bottom: 6px; }
.fcs-fc .cb-box   { width: 14px; height: 14px; border-radius: 4px; border: 1px solid rgba(139,92,246,.4); flex-shrink: 0; margin-top: 1px; display: flex; align-items: center; justify-content: center; font-size: 9px; transition: background .3s, border-color .3s; color: transparent; }
.fcs-fc .cb-box.on { background: #8b5cf6; border-color: #8b5cf6; color: #fff; }
.fcs-fc .cb-txt   { font-size: 8px; color: #64748b; line-height: 1.4; }
.fcs-fc .cb-lk    { color: #a78bfa; }

/* ── HERO INNER (two-column) ── */
.fcs-hero__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 10;
  width: 100%;
}
.fcs-hero__left {
  flex: 0 0 420px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.fcs-hero__pdot {
  width: 6px; height: 6px;
  background: #a78bfa;
  border-radius: 50%;
  animation: fcs-pdot 2s ease-in-out infinite;
  display: inline-block;
}
.fcs-hero__heading {
  font-size: clamp(34px, 3.3vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #f8fafc;
  margin: 0;
}
.fcs-hero__swap {
  display: inline-block;
  background: linear-gradient(135deg, #a78bfa 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity .3s;
}
.fcs-hero__sub {
  font-size: 16px;
  line-height: 1.65;
  color: #94a3b8;
  max-width: 380px;
  margin: 0;
}
.fcs-hero__btns {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
  justify-content: flex-start; margin: 0;
}
.fcs-hero__stats {
  display: flex; gap: 28px; flex-wrap: wrap; justify-content: flex-start; margin: 0;
}
.fcs-hero__stat       { text-align: left; }
.fcs-hero__stat-num   { font-size: 21px; font-weight: 800; color: #f1f5f9; display: block; }
.fcs-hero__stat-label { font-size: 11px; color: #64748b; margin-top: 2px; display: block; }
.fcs-hero__badges     { display: flex; gap: 8px; flex-wrap: wrap; }
.fcs-hero__badge {
  padding: 4px 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 6px;
  font-size: 10px;
  color: #94a3b8;
}

/* ── BUILDER CARD ── */
.fcs-hero__right { flex: 1; display: flex; justify-content: center; align-items: center; }
.fcs-bwrap { position: relative; }
.fcs-bglow {
  position: absolute; inset: -1px; border-radius: 17px;
  background: conic-gradient(from var(--fcs-angle), #7c3aed, #ec4899, #3b82f6, #7c3aed);
  animation: fcs-spin-angle 5s linear infinite;
  opacity: .3; z-index: 0;
}
.fcs-bcard {
  width: 580px; height: 420px; border-radius: 16px;
  position: relative; z-index: 1;
  overflow: hidden; display: flex; flex-direction: column;
  font-size: 11px;
  box-shadow: 0 40px 80px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.08);
}

/* Header */
.fcs-bh {
  background: #fff; border-bottom: 1px solid #e5e7eb;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 10px; height: 40px; flex-shrink: 0; gap: 6px;
}
.fcs-bh-left    { display: flex; align-items: center; gap: 5px; min-width: 0; }
.fcs-bh-back    { width: 26px; height: 26px; border-radius: 7px; display: flex; align-items: center; justify-content: center; color: #6b7280; font-size: 13px; }
.fcs-bh-sep     { width: 1px; height: 16px; background: #e5e7eb; }
.fcs-bh-undo    { display: flex; gap: 2px; }
.fcs-bh-ubtn    { width: 24px; height: 24px; border-radius: 6px; display: flex; align-items: center; justify-content: center; color: #9ca3af; font-size: 10px; }
.fcs-bh-title   { display: flex; align-items: center; gap: 4px; padding: 3px 6px; border-radius: 5px; }
.fcs-bh-title-txt { font-size: 11px; font-weight: 600; color: #111827; white-space: nowrap; overflow: hidden; max-width: 90px; text-overflow: ellipsis; }
.fcs-bh-pencil  { font-size: 8px; color: #d1d5db; }
.fcs-bh-status  { padding: 2px 6px; border-radius: 5px; background: #f3f4f6; border: 1px solid #e5e7eb; font-size: 9px; color: #6b7280; display: flex; align-items: center; gap: 3px; }
.fcs-bh-dot-gray  { width: 5px; height: 5px; border-radius: 50%; background: #9ca3af; }
.fcs-bh-dot-green { width: 5px; height: 5px; border-radius: 50%; background: #22c55e; }
.fcs-bh-center  { display: flex; align-items: center; }
.fcs-bh-nav     { display: flex; background: #f3f4f6; border-radius: 100px; padding: 2px; gap: 1px; }
.fcs-bh-ntab    { padding: 3px 10px; border-radius: 100px; font-size: 9.5px; font-weight: 500; color: #6b7280; white-space: nowrap; }
.fcs-bh-ntab.on { background: #fff; color: #111827; box-shadow: 0 1px 3px rgba(0,0,0,.1); }
.fcs-bh-right   { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.fcs-bh-bp      { display: flex; background: #f3f4f6; border-radius: 7px; padding: 2px; }
.fcs-bh-bpbtn   { width: 22px; height: 22px; border-radius: 5px; display: flex; align-items: center; justify-content: center; font-size: 10px; color: #9ca3af; }
.fcs-bh-bpbtn.on { background: #fff; color: #374151; box-shadow: 0 1px 2px rgba(0,0,0,.08); }
.fcs-bh-ai      { width: 28px; height: 28px; border-radius: 8px; background: linear-gradient(135deg, #7c3aed, #ec4899); display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
.fcs-bh-save    { padding: 4px 12px; background: linear-gradient(135deg, #4f46e5, #7c3aed); border-radius: 7px; color: #fff; font-size: 9.5px; font-weight: 600; }

/* Body */
.fcs-bbody { flex: 1; display: flex; overflow: hidden; background: #f3f4f6; }

/* Left panel */
.fcs-bleft        { width: 112px; background: #fff; border-right: 1px solid #e5e7eb; display: flex; flex-direction: column; overflow: hidden; flex-shrink: 0; }
.fcs-bleft-search { padding: 6px 7px; border-bottom: 1px solid #f3f4f6; }
.fcs-bleft-sinput { width: 100%; padding: 4px 7px 4px 22px; border: 1px solid #e5e7eb; border-radius: 6px; font-size: 9px; color: #374151; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") no-repeat 6px center; background-size: 10px; outline: none; }
.fcs-bleft-section { padding: 5px 7px 2px; font-size: 7.5px; font-weight: 600; color: #9ca3af; letter-spacing: .05em; text-transform: uppercase; }
.fcs-bfield-item   { display: flex; align-items: center; gap: 5px; padding: 4px 7px; font-size: 9px; color: #374151; border-radius: 5px; margin: 0 4px; transition: background .15s; }
.fcs-bfield-item.hl { background: #ede9fe; color: #7c3aed; font-weight: 600; }
.fcs-bfield-icon  { font-size: 11px; flex-shrink: 0; width: 14px; text-align: center; }
.fcs-bfield-grip  { margin-left: auto; font-size: 8px; color: #d1d5db; }

/* Canvas */
.fcs-bcanvas    { flex: 1; overflow: hidden; padding: 12px 10px; display: flex; flex-direction: column; gap: 8px; position: relative; }
.fcs-bform-card { background: #fff; border-radius: 10px; box-shadow: 0 1px 4px rgba(0,0,0,.08), 0 0 0 1px rgba(0,0,0,.04); padding: 12px; display: flex; flex-direction: column; gap: 6px; }
.fcs-bform-title { font-size: 12px; font-weight: 700; color: #111827; margin-bottom: 2px; }
.fcs-bfield-row  { border: 1.5px solid #e5e7eb; border-radius: 7px; padding: 6px 8px; display: flex; align-items: center; gap: 6px; background: #fff; transition: border-color .3s, box-shadow .3s; position: relative; }
.fcs-bfield-row.selected { border-color: #7c3aed; box-shadow: 0 0 0 2px rgba(124,58,237,.12); }
.fcs-bfield-row.new-in   { opacity: 0; transform: translateY(8px); transition: opacity .4s, transform .4s; }
.fcs-bfield-row.new-in.vis { opacity: 1; transform: translateY(0); }
.fcs-bfield-row-icon   { font-size: 12px; width: 16px; text-align: center; flex-shrink: 0; }
.fcs-bfield-row-name   { font-size: 9.5px; color: #374151; font-weight: 500; flex: 1; }
.fcs-bfield-row-type   { font-size: 7.5px; color: #7c3aed; background: #ede9fe; padding: 1px 5px; border-radius: 3px; }
.fcs-bfield-row-req    { font-size: 8px; color: #ef4444; margin-left: 2px; font-weight: 700; }
.fcs-bfield-row-grip   { font-size: 8px; color: #d1d5db; margin-left: 4px; }
.fcs-bfield-row-handle { position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 3px; height: 60%; background: #7c3aed; border-radius: 0 2px 2px 0; opacity: 0; transition: opacity .2s; }
.fcs-bfield-row.selected .fcs-bfield-row-handle { opacity: 1; }
.fcs-bsubmit-btn { margin-top: 2px; padding: 6px; background: linear-gradient(135deg, #4f46e5, #7c3aed); border-radius: 7px; text-align: center; font-size: 9px; font-weight: 600; color: #fff; }

/* Chat panel */
.fcs-bchat       { width: 170px; background: #fff; border-left: 1px solid #e5e7eb; display: flex; flex-direction: column; flex-shrink: 0; overflow: hidden; }
.fcs-bchat-hdr   { padding: 7px 9px; border-bottom: 1px solid #f3f4f6; display: flex; align-items: center; gap: 5px; background: #fff; flex-shrink: 0; }
.fcs-bchat-avatar { width: 20px; height: 20px; border-radius: 6px; background: linear-gradient(135deg, #7c3aed, #ec4899); display: flex; align-items: center; justify-content: center; font-size: 10px; flex-shrink: 0; }
.fcs-bchat-hdr-title { font-size: 9.5px; font-weight: 600; color: #111827; }
.fcs-bchat-hdr-sub   { font-size: 7.5px; color: #22c55e; font-weight: 500; }
.fcs-bchat-msgs  { flex: 1; overflow: hidden; padding: 7px 7px 4px; display: flex; flex-direction: column; gap: 5px; }
.fcs-bchat-bubble { max-width: 90%; border-radius: 10px; padding: 5px 7px; font-size: 8.5px; line-height: 1.4; word-break: break-word; }
.fcs-bchat-bubble.ai     { background: #f3f4f6; color: #374151; align-self: flex-start; border-radius: 10px 10px 10px 3px; }
.fcs-bchat-bubble.user   { background: linear-gradient(135deg, #4f46e5, #7c3aed); color: #fff; align-self: flex-end; border-radius: 10px 10px 3px 10px; }
.fcs-bchat-bubble.typing { background: #f3f4f6; align-self: flex-start; padding: 7px 10px; }
.fcs-bchat-dots  { display: flex; gap: 3px; align-items: center; }
.fcs-bchat-dot   { width: 4px; height: 4px; border-radius: 50%; background: #9ca3af; animation: fcs-chatdot .9s ease-in-out infinite; }
.fcs-bchat-dot:nth-child(2) { animation-delay: .15s; }
.fcs-bchat-dot:nth-child(3) { animation-delay: .3s; }
.fcs-bchat-input-wrap { padding: 5px 6px; border-top: 1px solid #f3f4f6; flex-shrink: 0; }
.fcs-bchat-input { width: 100%; padding: 5px 7px; border: 1px solid #e5e7eb; border-radius: 8px; font-size: 8.5px; color: #374151; outline: none; background: #f9fafb; }
.fcs-bchat-input-row { display: flex; gap: 4px; align-items: center; }
.fcs-bchat-send  { width: 22px; height: 22px; border-radius: 6px; background: linear-gradient(135deg, #7c3aed, #ec4899); display: flex; align-items: center; justify-content: center; font-size: 9px; color: #fff; flex-shrink: 0; }

/* Light-mode hero: slightly reduce the dark overlay so colors pop more */
html[data-theme="light"] .fcs-hero__dark {
  background: rgba(0,0,0,0.18);
}

/* ── Hero text: always sits on the dark/colourful WebGL canvas.
   In light mode the vibrant mid-tone waves reduce contrast, so we:
     1. Keep the dark overlay a bit stronger
     2. Use pure white text with a shadow for guaranteed legibility
     3. Add a frosted-glass tint behind the text column ── */
html[data-theme="light"] .fcs-hero__dark {
  background: rgba(0,0,0,0.35) !important;
}

/* Frosted backdrop behind the left text column only */
html[data-theme="light"] .fcs-hero__left {
  background: rgba(0,0,0,0.18);
  backdrop-filter: blur(2px);
  border-radius: 16px;
  padding: 32px 28px;
}

/* Eyebrow pill */
html[data-theme="light"] .fcs-hero .fcs-eyebrow {
  background: rgba(255,255,255,0.15) !important;
  border-color: rgba(255,255,255,0.35) !important;
  color: #ffffff !important;
}

/* All hero text: pure white + shadow so it reads on any wave colour */
html[data-theme="light"] .fcs-hero__heading {
  color: #ffffff !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}
html[data-theme="light"] .fcs-hero__sub {
  color: #f0f4ff !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.50);
}
html[data-theme="light"] .fcs-hero__stat-num {
  color: #ffffff !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.40);
}
html[data-theme="light"] .fcs-hero__stat-label {
  color: #dde8ff !important;
  text-shadow: 0 1px 6px rgba(0,0,0,0.45);
}
html[data-theme="light"] .fcs-hero__badge {
  background: rgba(255,255,255,0.16) !important;
  border-color: rgba(255,255,255,0.35) !important;
  color: #ffffff !important;
}

/* Secondary CTA button in hero stays white-on-glass */
html[data-theme="light"] .fcs-hero .fcs-btn--secondary {
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.45) !important;
  background: rgba(255,255,255,0.12) !important;
}
html[data-theme="light"] .fcs-hero .fcs-btn--secondary:hover {
  background: rgba(255,255,255,0.22) !important;
  border-color: rgba(255,255,255,0.60) !important;
}

/* ── Secondary button outside hero: fix hardcoded dark border ── */
html[data-theme="light"] .fcs-btn--secondary {
  border-color: #c0bfe0;
  color: var(--text-primary);
}
html[data-theme="light"] .fcs-btn--secondary:hover {
  border-color: rgba(124,58,237,0.45);
  background: rgba(124,58,237,0.06);
}

/* ── Light-mode floating field cards ── */
/* The cards float over the WebGL canvas (always dark/colorful),
   so in light mode we flip them to white-glass for contrast. */
html[data-theme="light"] .fcs-fc {
  background: rgba(255,255,255,0.90);
  border-color: rgba(124,58,237,0.18);
  box-shadow: 0 0 0 1px rgba(255,255,255,.6), 0 8px 40px rgba(0,0,0,.22);
}
html[data-theme="light"] .fcs-fc::before {
  background: linear-gradient(135deg, rgba(124,58,237,.06), transparent 55%);
}

/* Class-driven text inside cards */
html[data-theme="light"] .fcs-fc .fcs-fc-lbl   { color: rgba(109,68,220,.9); }
html[data-theme="light"] .fcs-fc .cal-hdr        { color: #3a3858; }
html[data-theme="light"] .fcs-fc .cd             { color: #3a3858; }
html[data-theme="light"] .fcs-fc .cd.avail       { color: #6060a0; }
html[data-theme="light"] .fcs-fc .cb-txt         { color: #4a4868; }
html[data-theme="light"] .fcs-fc .cb-lk          { color: #6d44dc; }
html[data-theme="light"] .fcs-fc .dyn-hdr        { color: #6060a0; }
html[data-theme="light"] .fcs-fc .dyn-it         { background: rgba(0,0,0,.04); border-color: rgba(0,0,0,.09); color: #4a4868; }
html[data-theme="light"] .fcs-fc .fdrop          { color: #6060a0; border-color: rgba(124,58,237,.22); }

/* Override inline style="color:#..." values injected by JS */
html[data-theme="light"] .fcs-fc [style*="color:#64748b"] { color: #4a4868 !important; }
html[data-theme="light"] .fcs-fc [style*="color:#475569"] { color: #3a3858 !important; }
html[data-theme="light"] .fcs-fc [style*="color:#94a3b8"] { color: #5050a0 !important; }
html[data-theme="light"] .fcs-fc [style*="color:#334155"] { color: #2a2848 !important; }

/* Responsive */
@media (max-width: 1100px) {
  .fcs-hero__inner { gap: 36px; padding: 0 24px; }
  .fcs-hero__left  { flex: 0 0 340px; }
  .fcs-bcard { width: 460px; height: 360px; }
  .fcs-bchat { width: 140px; }
}
@media (max-width: 768px) {
  .fcs-hero__inner { flex-direction: column; gap: 48px; align-items: flex-start; }
  .fcs-hero__left  { flex: none; }
  .fcs-bcard { width: 100%; max-width: 520px; height: 360px; }
  #fcs-fc-sig, #fcs-fc-stars, #fcs-fc-voice, #fcs-fc-file, #fcs-fc-dyn, #fcs-fc-con { display: none; }
  #fcs-fc-cal { right: 2%; top: 5%; width: 145px; }
}

/* ==========================================================
   18. HOMEPAGE COMPONENT CSS
   ========================================================== */

/* AI chat demo */
.fcs-ai-chat-demo { display:flex; flex-direction:column; gap:10px; }
.fcs-ai-chat-bubble { background:rgba(124,58,237,0.12); border:1px solid rgba(124,58,237,0.3); border-radius:10px; padding:12px 14px; font-size:12px; color:var(--text-secondary); line-height:1.5; }
.fcs-ai-progress { height:3px; background:var(--gradient-main); border-radius:3px; }
.fcs-ai-fields { display:grid; grid-template-columns:1fr 1fr; gap:6px; }
.fcs-ai-field { background:var(--bg-elevated); border:1px solid var(--border); border-radius:6px; padding:7px 10px; font-size:11px; color:#a78bfa; }
.fcs-ai-field--wide { grid-column:1/-1; }
.fcs-ai-status { font-size:11px; color:#34d399; font-weight:700; text-align:center; }

/* Calendar demo */
.fcs-cal-demo { background:var(--bg-base); border:1px solid var(--border); border-radius:10px; padding:14px; }
.fcs-cal-header { color:#a78bfa; font-weight:700; font-size:12px; text-align:center; margin-bottom:10px; }
.fcs-cal-grid { display:grid; grid-template-columns:repeat(7,1fr); gap:4px; text-align:center; }
.fcs-cal-day-name { font-size:9px; color:var(--text-muted); padding:3px 0; }
.fcs-cal-day { font-size:11px; color:var(--text-muted); padding:5px 3px; border-radius:4px; cursor:pointer; }
.fcs-cal-day--today { background:rgba(124,58,237,0.2); color:#a78bfa; font-weight:700; }
.fcs-cal-day--selected { background:var(--gradient-main); color:#fff; font-weight:700; }
.fcs-cal-day--empty { visibility:hidden; }

/* Workflow demo */
.fcs-flow-demo { display:flex; flex-direction:column; align-items:center; gap:6px; font-size:12px; }
.fcs-flow-node { background:var(--bg-elevated); border:1px solid var(--border); border-radius:8px; padding:8px 18px; color:var(--text-secondary); white-space:nowrap; }
.fcs-flow-node--trigger { background:rgba(124,58,237,0.15); border-color:rgba(124,58,237,0.4); color:#a78bfa; font-weight:700; }
.fcs-flow-arrow { color:var(--border); font-size:16px; }
.fcs-flow-branches { display:flex; gap:16px; }
.fcs-flow-branch { display:flex; flex-direction:column; align-items:center; gap:4px; }
.fcs-flow-condition { font-size:10px; color:var(--text-muted); }

/* Analytics demo */
.fcs-analytics-demo { display:flex; flex-direction:column; gap:14px; }
.fcs-analytics-stats { display:flex; gap:10px; }
.fcs-analytics-stat { flex:1; background:var(--bg-base); border:1px solid var(--border); border-radius:8px; padding:10px; text-align:center; display:flex; flex-direction:column; gap:3px; }
.fcs-analytics-stat span:last-child { font-size:10px; color:var(--text-muted); }
.fcs-analytics-bars { background:var(--bg-base); border:1px solid var(--border); border-radius:8px; padding:12px; }
.fcs-analytics-bar-label { font-size:9px; color:var(--text-muted); font-weight:700; text-transform:uppercase; letter-spacing:1px; margin-bottom:8px; }
.fcs-analytics-bar-row { display:flex; align-items:center; gap:8px; margin-bottom:6px; font-size:11px; color:var(--text-secondary); }
.fcs-analytics-bar-row span:first-child { width:52px; flex-shrink:0; }
.fcs-analytics-bar-row span:last-child  { width:30px; text-align:right; flex-shrink:0; }
.fcs-analytics-bar-track { flex:1; height:6px; background:var(--border); border-radius:3px; }
.fcs-analytics-bar-fill  { height:100%; background:var(--gradient-main); border-radius:3px; }

/* Pricing teaser link */
.fcs-pricing-teaser-link { text-align:center; margin-top:20px; font-size:13px; }
.fcs-pricing-teaser-link a { color:#a78bfa; font-weight:600; }
.fcs-pricing-teaser-link a:hover { text-decoration:underline; }

/* Compare table wrapper (overflow on mobile) */
.fcs-compare-wrap { overflow-x:auto; }

/* ==========================================================
   19. PRICING PAGE
   ========================================================== */
.fcs-pricing-grid--4col { grid-template-columns: repeat(4,1fr); }
@media (max-width:1100px) { .fcs-pricing-grid--4col { grid-template-columns: repeat(2,1fr); } }
@media (max-width:600px)  { .fcs-pricing-grid--4col { grid-template-columns: 1fr; } }

.fcs-price-toggle-wrap { display:flex; align-items:center; gap:10px; justify-content:center; }
.fcs-price-toggle-label { font-size:14px; font-weight:600; color:var(--text-secondary); }
.fcs-price-toggle-switch { position:relative; cursor:pointer; }
.fcs-price-toggle { position:absolute; opacity:0; width:0; height:0; }
.fcs-price-toggle-track {
  display:block; width:44px; height:24px; background:var(--border);
  border-radius:999px; position:relative; transition:background 0.2s;
}
.fcs-price-toggle:checked + .fcs-price-toggle-track { background:var(--brand-purple); }
.fcs-price-toggle-thumb {
  position:absolute; top:3px; left:3px;
  width:18px; height:18px; border-radius:50%; background:#fff;
  transition:transform 0.2s;
}
.fcs-price-toggle:checked + .fcs-price-toggle-track .fcs-price-toggle-thumb { transform:translateX(20px); }
.fcs-price-save-badge {
  background:rgba(52,211,153,0.12); border:1px solid rgba(52,211,153,0.3);
  color:#34d399; font-size:11px; font-weight:700; padding:3px 10px; border-radius:999px;
}
.fcs-pricing-guarantee { text-align:center; margin-top:24px; font-size:13px; color:var(--text-muted); }

.fcs-addon-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:32px; }
@media (max-width:900px) { .fcs-addon-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:540px) { .fcs-addon-grid { grid-template-columns:1fr; } }

.fcs-addon-card { background:var(--bg-base); border:1px solid var(--border); border-radius:var(--radius-md); padding:24px; text-align:center; display:flex; flex-direction:column; gap:10px; align-items:center; }
.fcs-addon-card--highlight { border-color:rgba(124,58,237,0.4); background:rgba(124,58,237,0.06); }
.fcs-addon-icon { font-size:28px; }
.fcs-addon-name { font-size:15px; font-weight:700; color:var(--text-primary); }
.fcs-addon-desc { font-size:12px; color:var(--text-muted); line-height:1.55; }
.fcs-addon-price { font-size:18px; font-weight:800; color:var(--text-primary); }

/* FAQ */
.fcs-faq { display:flex; flex-direction:column; gap:0; }
.fcs-faq-item { border-bottom:1px solid var(--border); }
.fcs-faq-q {
  width:100%; display:flex; justify-content:space-between; align-items:center;
  padding:18px 0; font-size:15px; font-weight:600; color:var(--text-primary);
  background:none; border:none; cursor:pointer; font-family:inherit; text-align:left; gap:16px;
  transition:color 0.2s;
}
.fcs-faq-q:hover { color:#a78bfa; }
.fcs-faq-q[aria-expanded="true"] .fcs-faq-icon { transform:rotate(45deg); }
.fcs-faq-icon { font-size:20px; color:#a78bfa; transition:transform 0.2s; flex-shrink:0; }
.fcs-faq-a { padding:0 0 16px; }
.fcs-faq-a p { font-size:14px; color:var(--text-secondary); line-height:1.65; }

/* ==========================================================
   20. FEATURE PAGES
   ========================================================== */
.fcs-features-bento { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:0; }
@media (max-width:900px) { .fcs-features-bento { grid-template-columns:repeat(2,1fr); } }
@media (max-width:580px) { .fcs-features-bento { grid-template-columns:1fr; } }

.fcs-features-bento-card { background:var(--bg-surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:28px; display:flex; flex-direction:column; gap:16px; transition:border-color 0.2s; }
.fcs-features-bento-card:hover { border-color:var(--border-bright); }
.fcs-features-bento-header { display:flex; align-items:flex-start; gap:14px; }
.fcs-features-bento-icon { font-size:32px; flex-shrink:0; }
.fcs-features-bento-list { display:flex; flex-direction:column; gap:7px; flex:1; }
.fcs-features-bento-list li { display:flex; align-items:center; gap:8px; font-size:13px; color:var(--text-muted); }

.fcs-use-cases { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
@media (max-width:640px) { .fcs-use-cases { grid-template-columns:1fr; } }
.fcs-use-case { background:var(--bg-surface); border:1px solid var(--border); border-radius:var(--radius-md); padding:22px; }
.fcs-use-case__title { font-size:15px; font-weight:700; color:var(--text-primary); margin-bottom:8px; }
.fcs-use-case__desc  { font-size:13px; color:var(--text-muted); line-height:1.55; }

/* ==========================================================
   21. CONTENT PAGES (About, Affiliate, Changelog, Roadmap)
   ========================================================== */

/* Team grid */
.fcs-team-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
@media (max-width:900px) { .fcs-team-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:540px) { .fcs-team-grid { grid-template-columns:1fr; } }
.fcs-team-card { text-align:center; }
.fcs-team-photo { width:80px; height:80px; border-radius:50%; object-fit:cover; margin:0 auto 12px; display:block; }
.fcs-team-photo--placeholder { background:var(--gradient-main); }
.fcs-team-name { font-size:15px; font-weight:700; color:var(--text-primary); margin-bottom:3px; }
.fcs-team-role { font-size:12px; color:#a78bfa; margin-bottom:8px; }
.fcs-team-bio  { font-size:12px; color:var(--text-muted); line-height:1.55; }

/* Affiliate steps */
.fcs-steps { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
@media (max-width:680px) { .fcs-steps { grid-template-columns:1fr; } }
.fcs-step { background:var(--bg-surface); border:1px solid var(--border); border-radius:var(--radius-md); padding:28px; text-align:center; }
.fcs-step-num { width:44px; height:44px; border-radius:50%; background:var(--gradient-main); color:#fff; font-weight:800; font-size:18px; display:flex; align-items:center; justify-content:center; margin:0 auto 14px; }
.fcs-step-title { font-size:16px; font-weight:700; color:var(--text-primary); margin-bottom:8px; }

/* Changelog */
.fcs-changelog-entry { border-left:2px solid var(--border); padding:0 0 40px 24px; margin-top:40px; position:relative; }
.fcs-changelog-entry::before { content:''; position:absolute; left:-5px; top:4px; width:8px; height:8px; background:#a78bfa; border-radius:50%; }
.fcs-changelog-meta { display:flex; align-items:center; flex-wrap:wrap; gap:10px; margin-bottom:14px; }
.fcs-changelog-version { font-size:16px; font-weight:800; color:var(--text-primary); }
.fcs-changelog-date { font-size:12px; color:var(--text-muted); }
.fcs-changelog-tag { font-size:10px; font-weight:700; padding:3px 10px; border-radius:999px; border:1px solid; text-transform:uppercase; letter-spacing:0.5px; }
.fcs-changelog-items { display:flex; flex-direction:column; gap:6px; }
.fcs-changelog-items li { font-size:14px; color:var(--text-secondary); display:flex; align-items:flex-start; gap:8px; }
.fcs-changelog-items li::before { content:'→'; color:#a78bfa; flex-shrink:0; }

/* Roadmap */
.fcs-roadmap-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
@media (max-width:860px) { .fcs-roadmap-grid { grid-template-columns:1fr; } }
.fcs-roadmap-col { background:var(--bg-surface); border:1px solid var(--border); border-radius:var(--radius-md); padding:0; overflow:hidden; }
.fcs-roadmap-col-header { padding:16px 20px; font-size:13px; font-weight:700; color:var(--text-primary); border-bottom:2px solid var(--border); display:flex; align-items:center; gap:8px; }
.fcs-roadmap-card { padding:16px 20px; border-bottom:1px solid rgba(30,30,53,0.5); }
.fcs-roadmap-card:last-child { border-bottom:none; }
.fcs-roadmap-category { font-size:9px; font-weight:700; color:#a78bfa; text-transform:uppercase; letter-spacing:1px; margin-bottom:5px; }
.fcs-roadmap-title { font-size:14px; font-weight:700; color:var(--text-primary); margin-bottom:5px; }
.fcs-roadmap-desc { font-size:12px; color:var(--text-muted); line-height:1.5; }

/* ==========================================================
   22. BLOG ARCHIVE
   ========================================================== */

/* ── Page header ─────────────────────────────────────────── */
.fcs-blog-page-header { padding:100px 24px 56px; background:linear-gradient(180deg,var(--bg-surface) 0%,var(--bg-base) 100%); border-bottom:1px solid var(--border); text-align:center; }
html[data-theme="light"] .fcs-blog-page-header { background:linear-gradient(180deg,#ffffff 0%,var(--bg-elevated) 100%); }
.fcs-blog-page-title { font-size:clamp(32px,5vw,52px); font-weight:800; color:var(--text-primary); letter-spacing:-0.025em; line-height:1.1; margin:12px 0 16px; }
.fcs-blog-page-desc { font-size:17px; color:var(--text-secondary); max-width:540px; margin:0 auto 32px; line-height:1.65; }

/* ── Category filter pills ───────────────────────────────── */
.fcs-blog-cats { display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:8px; }
.fcs-blog-cat-pill { display:inline-flex; align-items:center; padding:6px 16px; border-radius:100px; font-size:13px; font-weight:500; border:1px solid var(--border); background:var(--bg-elevated); color:var(--text-secondary); transition:all 0.2s; white-space:nowrap; }
.fcs-blog-cat-pill:hover, .fcs-blog-cat-pill--active { background:rgba(124,58,237,0.15); border-color:rgba(124,58,237,0.5); color:#a78bfa; }
html[data-theme="light"] .fcs-blog-cat-pill { background:#f4f3ff; border-color:#e0dcff; color:var(--text-secondary); }
html[data-theme="light"] .fcs-blog-cat-pill:hover, html[data-theme="light"] .fcs-blog-cat-pill--active { background:rgba(124,58,237,0.1); border-color:rgba(124,58,237,0.4); color:#7c3aed; }

/* ── Container ──────────────────────────────────────────── */
.fcs-blog-container { padding-top:56px; padding-bottom:96px; }

/* ── Category badge (on cards) ───────────────────────────── */
.fcs-blog-cat-badge { display:inline-flex; align-items:center; padding:3px 10px; border-radius:100px; font-size:11px; font-weight:700; letter-spacing:0.04em; text-transform:uppercase; background:rgba(124,58,237,0.15); color:#a78bfa; transition:background 0.2s; }
.fcs-blog-cat-badge:hover { background:rgba(124,58,237,0.25); }
html[data-theme="light"] .fcs-blog-cat-badge { background:rgba(124,58,237,0.1); color:#7c3aed; }
html[data-theme="light"] .fcs-blog-cat-badge:hover { background:rgba(124,58,237,0.18); }

/* ── Read more link ─────────────────────────────────────── */
.fcs-blog-read-more { display:inline-flex; align-items:center; gap:6px; font-size:14px; font-weight:600; color:#a78bfa; transition:gap 0.2s,color 0.2s; }
.fcs-blog-read-more:hover { color:#c4b5fd; gap:10px; }
html[data-theme="light"] .fcs-blog-read-more { color:#7c3aed; }
html[data-theme="light"] .fcs-blog-read-more:hover { color:#5b21b6; }

/* ── Hero / Featured post ────────────────────────────────── */
.fcs-blog-hero { border-radius:var(--radius-xl); overflow:hidden; border:1px solid var(--border); background:var(--bg-surface); margin-bottom:48px; transition:border-color 0.25s,box-shadow 0.25s; }
.fcs-blog-hero:hover { border-color:var(--border-bright); box-shadow:0 8px 40px rgba(124,58,237,0.12); }
.fcs-blog-hero__image-link { display:block; position:relative; overflow:hidden; }
.fcs-blog-hero__thumb { width:100%; aspect-ratio:21/9; background-size:cover; background-position:center; transition:transform 0.5s ease; }
.fcs-blog-hero:hover .fcs-blog-hero__thumb { transform:scale(1.02); }
.fcs-blog-hero__thumb--placeholder { background:linear-gradient(135deg,var(--bg-elevated),var(--bg-surface)); min-height:260px; }
.fcs-blog-hero__overlay { position:absolute; inset:0; background:linear-gradient(to bottom,transparent 50%,rgba(0,0,0,0.1) 100%); pointer-events:none; }
.fcs-blog-hero__body { padding:32px 40px 36px; }
.fcs-blog-hero__meta { display:flex; align-items:center; gap:10px; flex-wrap:wrap; margin-bottom:16px; }
.fcs-blog-hero__date, .fcs-blog-hero__read { font-size:13px; color:var(--text-muted); }
.fcs-blog-hero__read::before { content:'·'; margin-right:4px; opacity:0.5; }
.fcs-blog-hero__title { font-size:clamp(22px,3.2vw,36px); font-weight:800; line-height:1.18; letter-spacing:-0.02em; margin:0 0 16px; }
.fcs-blog-hero__title a { color:var(--text-primary); transition:color 0.2s; }
.fcs-blog-hero__title a:hover { color:#a78bfa; }
html[data-theme="light"] .fcs-blog-hero__title a:hover { color:#7c3aed; }
.fcs-blog-hero__excerpt { font-size:16px; color:var(--text-secondary); line-height:1.7; margin:0 0 24px; max-width:72ch; }
@media (max-width:768px) {
  .fcs-blog-hero__body { padding:24px 20px 28px; }
  .fcs-blog-hero__thumb { aspect-ratio:16/9; }
}

/* ── Posts grid ─────────────────────────────────────────── */
.fcs-blog-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:28px; margin-bottom:56px; }
@media (max-width:640px) { .fcs-blog-grid { grid-template-columns:1fr; gap:20px; } }

/* ── Grid card ──────────────────────────────────────────── */
.fcs-blog-card { background:var(--bg-surface); border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; transition:border-color 0.25s,box-shadow 0.25s,transform 0.25s; display:flex; flex-direction:column; }
.fcs-blog-card:hover { border-color:var(--border-bright); box-shadow:0 6px 28px rgba(124,58,237,0.1); transform:translateY(-2px); }
.fcs-blog-card__thumb-link { display:block; overflow:hidden; }
.fcs-blog-card__thumb { width:100%; aspect-ratio:16/9; background-size:cover; background-position:center; transition:transform 0.45s ease; }
.fcs-blog-card:hover .fcs-blog-card__thumb { transform:scale(1.04); }
.fcs-blog-card__thumb--placeholder { background:linear-gradient(135deg,var(--bg-elevated) 0%,var(--bg-surface) 100%); min-height:180px; }
.fcs-blog-card__body { padding:24px; display:flex; flex-direction:column; flex:1; gap:12px; }
.fcs-blog-card__meta { display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.fcs-blog-card__date, .fcs-blog-card__read { font-size:12px; color:var(--text-muted); }
.fcs-blog-card__read::before { content:'·'; margin-right:4px; opacity:0.5; }
.fcs-blog-card__title { font-size:clamp(16px,1.8vw,20px); font-weight:700; line-height:1.3; letter-spacing:-0.01em; margin:0; }
.fcs-blog-card__title a { color:var(--text-primary); transition:color 0.2s; }
.fcs-blog-card__title a:hover { color:#a78bfa; }
html[data-theme="light"] .fcs-blog-card__title a:hover { color:#7c3aed; }
.fcs-blog-card__excerpt { font-size:14px; color:var(--text-secondary); line-height:1.65; flex:1; margin:0; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
.fcs-blog-card__body .fcs-blog-read-more { margin-top:4px; }

/* ── Pagination ──────────────────────────────────────────── */
.fcs-blog-pagination { display:flex; justify-content:center; padding-top:16px; }
.fcs-blog-pagination .nav-links { display:flex; align-items:center; gap:6px; flex-wrap:wrap; justify-content:center; }
.fcs-blog-pagination .page-numbers { display:inline-flex; align-items:center; justify-content:center; min-width:40px; height:40px; padding:0 14px; border-radius:var(--radius-md); font-size:14px; font-weight:500; border:1px solid var(--border); background:var(--bg-surface); color:var(--text-secondary); transition:all 0.2s; }
.fcs-blog-pagination .page-numbers:hover { border-color:rgba(124,58,237,0.5); background:rgba(124,58,237,0.1); color:#a78bfa; }
.fcs-blog-pagination .page-numbers.current { background:var(--brand-purple); border-color:var(--brand-purple); color:#fff; font-weight:700; }
.fcs-blog-pagination .page-numbers.dots { border-color:transparent; background:transparent; color:var(--text-muted); min-width:unset; padding:0 4px; }
html[data-theme="light"] .fcs-blog-pagination .page-numbers { background:#fff; border-color:#e2e3f0; color:var(--text-secondary); }
html[data-theme="light"] .fcs-blog-pagination .page-numbers:hover { border-color:rgba(124,58,237,0.4); background:rgba(124,58,237,0.06); color:#7c3aed; }
html[data-theme="light"] .fcs-blog-pagination .page-numbers.current { background:var(--brand-purple); border-color:var(--brand-purple); color:#fff; }

/* ── Empty state ──────────────────────────────────────────── */
.fcs-blog-empty { text-align:center; padding:80px 24px; color:var(--text-muted); font-size:16px; }

/* ── Single post ─────────────────────────────────────────────── */
.fcs-single-header { padding: 100px 24px 52px; background: linear-gradient(180deg, var(--bg-deep,#0a0a12) 0%, var(--bg-base,#0d0d18) 100%); border-bottom: 1px solid var(--border); }
.fcs-single-header-inner { max-width: 860px; margin: 0 auto; }
.fcs-single-meta { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.fcs-single-meta a { color: var(--accent,#8b5cf6); text-decoration: none; }
.fcs-single-meta a:hover { text-decoration: underline; }
.fcs-single-meta-sep { opacity: 0.35; }
.fcs-single-title { font-size: clamp(26px, 4vw, 44px); font-weight: 800; color: var(--text-primary); line-height: 1.18; letter-spacing: -0.02em; margin: 0 0 20px; }
.fcs-single-excerpt { font-size: 18px; color: var(--text-secondary); line-height: 1.65; margin: 0 0 28px; max-width: 720px; }
.fcs-single-author { display: flex; align-items: center; gap: 12px; }
.fcs-single-author img { border-radius: 50%; flex-shrink: 0; }
.fcs-single-author-info { display: flex; flex-direction: column; gap: 2px; }
.fcs-single-author-name { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.fcs-single-author-bio-short { font-size: 12px; color: var(--text-muted); }

/* Featured image */
.fcs-single-thumb-wrap { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.fcs-single-thumb { width: 100%; height: auto; display: block; border-radius: var(--radius-md); border: 1px solid var(--border); margin-top: -24px; }

/* Content wrapper */
.fcs-single-body { padding: 56px 24px 88px; }
.fcs-single-content { max-width: 860px; margin: 0 auto; font-size: 17px; line-height: 1.8; color: var(--text-secondary); }

/* Headings */
.fcs-single-content h2 { font-size: clamp(19px, 2.4vw, 26px); font-weight: 700; color: var(--text-primary); margin: 52px 0 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.fcs-single-content h3 { font-size: clamp(15px, 1.8vw, 20px); font-weight: 700; color: var(--text-primary); margin: 36px 0 12px; }
.fcs-single-content h4 { font-size: 16px; font-weight: 600; color: var(--text-primary); margin: 28px 0 8px; }

/* Body text */
.fcs-single-content p { margin: 0 0 20px; }
.fcs-single-content strong { color: var(--text-primary); font-weight: 600; }
.fcs-single-content a { color: #a78bfa; text-decoration: underline; text-underline-offset: 3px; }
.fcs-single-content a:hover { color: #c4b5fd; }

/* Inline code */
.fcs-single-content :not(pre) > code { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 5px; padding: 2px 7px; font-size: 14px; color: #67e8f9; font-family: ui-monospace, 'Cascadia Code', monospace; white-space: nowrap; }

/* Code blocks */
.fcs-single-content pre.wp-block-code { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px 24px; overflow-x: auto; margin: 0 0 28px; }
.fcs-single-content pre.wp-block-code code { background: none; border: none; padding: 0; font-size: 14px; color: #e2e8f0; font-family: ui-monospace, 'Cascadia Code', monospace; white-space: pre; }

/* Lists */
.fcs-single-content ul, .fcs-single-content ol { margin: 0 0 20px; padding-left: 26px; }
.fcs-single-content li { margin-bottom: 8px; line-height: 1.7; }
.fcs-single-content li::marker { color: var(--accent,#8b5cf6); }

/* Tables */
.fcs-single-content .wp-block-table { margin: 0 0 28px; overflow-x: auto; display: block; }
.fcs-single-content table { width: 100%; min-width: 480px; border-collapse: collapse; font-size: 14px; }
.fcs-single-content th { background: var(--bg-elevated); color: var(--text-primary); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; padding: 10px 14px; text-align: left; border: 1px solid var(--border); }
.fcs-single-content td { padding: 10px 14px; border: 1px solid var(--border); color: var(--text-secondary); vertical-align: top; }
.fcs-single-content tr:nth-child(even) td { background: rgba(255,255,255,.025); }

/* Blockquote */
.fcs-single-content blockquote { border-left: 3px solid var(--accent,#8b5cf6); margin: 0 0 24px; padding: 14px 20px; background: rgba(139,92,246,.07); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.fcs-single-content blockquote p { margin: 0; font-style: italic; }

@media (max-width: 680px) {
  .fcs-single-header { padding-top: 80px; padding-bottom: 36px; }
  .fcs-single-content { font-size: 16px; }
  .fcs-single-content pre.wp-block-code { padding: 14px 16px; }
}

/* Case study */
.fcs-casestudy-stats { display:flex; gap:0; justify-content:center; flex-wrap:wrap; }
.fcs-casestudy-stat { text-align:center; padding:24px 40px; border-right:1px solid var(--border); }
.fcs-casestudy-stat:last-child { border-right:none; }
@media (max-width:600px) { .fcs-casestudy-stat { border-right:none; border-bottom:1px solid var(--border); width:100%; } }

/* Pagination */
.page-numbers { display:inline-flex; align-items:center; gap:4px; padding:8px 14px; background:var(--bg-surface); border:1px solid var(--border); border-radius:var(--radius-sm); color:var(--text-muted); font-size:13px; font-weight:600; }
.page-numbers.current { background:var(--brand-purple); border-color:var(--brand-purple); color:#fff; }

/* ==========================================================
   15. PRICING — dual price display additions
   ========================================================== */
.fcs-price-number {
  font-size: clamp(32px,4vw,48px);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1;
}
.fcs-price-period {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 400;
  margin-left: 2px;
}
.fcs-price-lifetime {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin: 6px 0 14px;
  min-height: 20px;
}
.fcs-price-lifetime-link {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
  transition: color 0.2s;
}
.fcs-price-lifetime-link:hover { color: var(--text-secondary); }
.fcs-pricing-teaser-link { text-align:center; margin-top:24px; }
.fcs-pricing-teaser-link a {
  font-size:14px; color: var(--brand-purple);
  transition: opacity 0.2s;
}
.fcs-pricing-teaser-link a:hover { opacity: 0.8; }
.fcs-pricing-guarantee {
  text-align:center; margin-top:28px;
  font-size:13px; color:var(--text-muted);
}
.fcs-pricing-grid--4col {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width:1100px) { .fcs-pricing-grid--4col { grid-template-columns: repeat(2,1fr); } }
@media (max-width:580px)  { .fcs-pricing-grid--4col { grid-template-columns: 1fr; } }

.fcs-edd-notice {
  background: rgba(251,191,36,0.08);
  border: 1px solid rgba(251,191,36,0.3);
  color: #fbbf24;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-size: 14px;
  margin-bottom: 28px;
  text-align: center;
}
.fcs-edd-notice a { color: #fbbf24; text-decoration: underline; }

/* ==========================================================
   16. AUTH PAGES
   ========================================================== */
.fcs-auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--bg-base);
}
.fcs-auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.fcs-auth-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.fcs-auth-logo a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.fcs-auth-logo__mark {
  font-size: 22px;
  color: var(--brand-purple);
}
.fcs-auth-logo__name {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.fcs-auth-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.2;
}
.fcs-auth-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 28px;
}
.fcs-auth-error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #fca5a5;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 20px;
}
#fcs-login-form { padding: 0; }
#fcs-login-form p { margin-bottom: 16px; }
#fcs-login-form label,
.fcs-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
#fcs-login-form input[type="text"],
#fcs-login-form input[type="password"],
.fcs-input {
  width: 100%;
  padding: 11px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s;
  box-sizing: border-box;
  display: block;
}
#fcs-login-form input[type="text"]:focus,
#fcs-login-form input[type="password"]:focus,
.fcs-input:focus {
  outline: none;
  border-color: var(--brand-purple);
}
#fcs-login-form .button,
#fcs-login-form .button-primary,
#fcs-login-form input[type="submit"] {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--gradient-main);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s;
  text-align: center;
  margin-top: 4px;
  box-sizing: border-box;
}
#fcs-login-form .button:hover,
#fcs-login-form .button-primary:hover,
#fcs-login-form input[type="submit"]:hover { opacity: 0.88; }
#fcs-login-form .forgetmenot {
  display: flex;
  align-items: center;
  gap: 8px;
}
#fcs-login-form .forgetmenot input { width: auto; }
#fcs-login-form .forgetmenot label { font-size: 13px; margin: 0; }
.fcs-auth-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-secondary);
  flex-wrap: wrap;
}
.fcs-auth-links a { color: var(--brand-purple); }
.fcs-auth-links a:hover { text-decoration: underline; }
.fcs-auth-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  margin-bottom: 0;
}
.fcs-form-group { margin-bottom: 16px; }
.fcs-auth-form .fcs-btn--full,
.fcs-btn--full { width: 100%; display: block; text-align: center; }
html[data-theme="light"] .fcs-auth-error { color: #b91c1c; }

/* ==========================================================
   17. DASHBOARD
   ========================================================== */
.fcs-dashboard {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.fcs-dashboard__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 16px;
  flex-wrap: wrap;
}
.fcs-dashboard__welcome {
  display: flex;
  align-items: center;
  gap: 14px;
}
.fcs-dashboard__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.fcs-dashboard__greeting {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}
.fcs-dashboard__email {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}
.fcs-tab-nav {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
  overflow-x: auto;
  scrollbar-width: none;
}
.fcs-tab-nav::-webkit-scrollbar { display: none; }
.fcs-tab-btn {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: -1px;
  font-family: inherit;
}
.fcs-tab-btn:hover { color: var(--text-primary); }
.fcs-tab-btn--active {
  color: var(--text-primary);
  border-bottom-color: var(--brand-purple);
  font-weight: 600;
}
.fcs-tab-panel { display: none; }
.fcs-tab-panel--active { display: block; }
.fcs-license-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}
.fcs-license-card:hover { border-color: var(--border-bright); }
.fcs-license-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 12px;
}
.fcs-license-card__product {
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 600;
}
.fcs-license-status {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.fcs-license-status--active   { background:rgba(52,211,153,.12); color:#34d399; border:1px solid rgba(52,211,153,.25); }
.fcs-license-status--expired  { background:rgba(239,68,68,.10);  color:#f87171; border:1px solid rgba(239,68,68,.20); }
.fcs-license-status--inactive { background:rgba(100,116,139,.1); color:#94a3b8; border:1px solid rgba(100,116,139,.2); }
.fcs-license-key-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.fcs-license-key {
  flex: 1;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  overflow-x: auto;
  white-space: nowrap;
}
.fcs-license-meta {
  display: flex;
  gap: 20px;
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.fcs-download-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  gap: 16px;
  flex-wrap: wrap;
}
.fcs-download-row__info strong {
  display: block;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 2px;
  font-weight: 600;
}
.fcs-download-row__file { font-size: 12px; color: var(--text-muted); }
.fcs-order-list__header {
  display: grid;
  grid-template-columns: 100px 1fr 90px 90px;
  gap: 8px;
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.fcs-order-row {
  display: grid;
  grid-template-columns: 100px 1fr 90px 90px;
  gap: 8px;
  padding: 14px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  font-size: 14px;
  align-items: center;
  transition: border-color 0.2s;
}
.fcs-order-row:hover { border-color: var(--border-bright); }
.fcs-order-row__date,
.fcs-order-row__amount { color: var(--text-secondary); font-size: 13px; }
.fcs-order-row__product { color: var(--text-primary); font-weight: 500; }
.fcs-order-status {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  justify-self: start;
}
.fcs-order-status--complete { background:rgba(52,211,153,.12); color:#34d399; }
.fcs-order-status--refunded { background:rgba(100,116,139,.1);  color:#94a3b8; }
.fcs-order-status--pending  { background:rgba(251,191,36,.10);  color:#fbbf24; }
.fcs-profile-form { max-width: 480px; }
.fcs-profile-form p { margin-bottom: 16px; }
.fcs-profile-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.fcs-profile-form input[type="text"],
.fcs-profile-form input[type="email"],
.fcs-profile-form input[type="password"] {
  width: 100%;
  padding: 11px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  box-sizing: border-box;
  transition: border-color 0.2s;
  display: block;
}
.fcs-profile-form input[type="text"]:focus,
.fcs-profile-form input[type="email"]:focus,
.fcs-profile-form input[type="password"]:focus { outline: none; border-color: var(--brand-purple); }
.fcs-profile-form input[type="submit"] {
  padding: 11px 24px;
  background: var(--gradient-main);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s;
}
.fcs-profile-form input[type="submit"]:hover { opacity: 0.88; }
.fcs-dashboard__empty {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-muted);
}
.fcs-dashboard__empty p { font-size: 16px; margin-bottom: 20px; }
.fcs-dashboard__notice {
  padding: 16px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 14px;
}
.fcs-btn--ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-family: inherit;
}
.fcs-btn--ghost:hover { border-color: var(--text-secondary); color: var(--text-primary); }
.fcs-btn--xs { padding: 4px 10px !important; font-size: 12px !important; border-radius: var(--radius-sm) !important; }
@media (max-width: 600px) {
  .fcs-auth-card { padding: 28px 20px; }
  .fcs-dashboard { padding: 32px 16px 60px; }
  .fcs-order-list__header,
  .fcs-order-row { grid-template-columns: 85px 1fr 80px; }
  .fcs-order-row__amount,
  .fcs-order-list__header span:nth-child(3) { display: none; }
}

/* ==========================================================
   §18 — HOMEPAGE REDESIGN (Bold & Spacious)
   ========================================================== */

/* ── Section tag (pill eyebrow label) ── */
.fcs-section-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 3px 12px;
  margin-bottom: 10px;
}
html[data-theme="light"] .fcs-section-tag {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
}

/* ── Social proof bar v2 ── */
.fcs-proof-bar {
  padding: 36px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
}
.fcs-proof-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  padding: 0 24px;
}
.fcs-proof-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  white-space: nowrap;
  flex: 1;
  align-items: center;
  text-align: center;
}
.fcs-proof-stat strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  display: block;
  line-height: 1;
}
.fcs-proof-stat span {
  font-size: 11px;
  color: var(--text-secondary);
}
.fcs-proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}
.fcs-proof-logos {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.fcs-logo-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}
html[data-theme="light"] .fcs-proof-bar { background: rgba(0,0,0,0.015); }
html[data-theme="light"] .fcs-logo-pill { background: rgba(0,0,0,0.03); color: #64748b; }

/* ── Feature grid v2 (uniform 3-col cards) ── */
.fcs-feature-grid--v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}
@media (max-width: 768px) { .fcs-feature-grid--v2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .fcs-feature-grid--v2 { grid-template-columns: 1fr; } }

.fcs-feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  transition: border-color .2s ease, transform .2s ease;
}
.fcs-feature-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-2px);
}
.fcs-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  margin-bottom: 14px;
}
.fcs-feature-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.fcs-feature-card p {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.6;
}
html[data-theme="light"] .fcs-feature-card { background: #fff; border-color: #e2e8f0; }
html[data-theme="light"] .fcs-feature-card:hover { border-color: rgba(124, 58, 237, 0.3); }

/* ── Deep-dive bullet chips (restyled <li>) ── */
.fcs-deepdive__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
  padding: 0;
}
.fcs-deepdive__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.fcs-deepdive__bullets li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--brand-purple);
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}

/* ── Animated panel shared wrapper ── */
.fcs-anim-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}
html[data-theme="light"] .fcs-anim-panel { background: #fff; border-color: #e2e8f0; }

.fcs-anim-panel__header {
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
html[data-theme="light"] .fcs-anim-panel__header { background: #f8fafc; border-bottom-color: #e2e8f0; }

.fcs-anim-panel__dots { display: flex; gap: 5px; align-items: center; }
.fcs-anim-panel__dots span { width: 8px; height: 8px; border-radius: 50%; }
.fcs-anim-panel__dots span:nth-child(1) { background: #ff5f56; }
.fcs-anim-panel__dots span:nth-child(2) { background: #febc2e; }
.fcs-anim-panel__dots span:nth-child(3) { background: #28c840; }

.fcs-anim-panel__title {
  font-size: 11px;
  color: var(--text-secondary);
  margin-left: 8px;
  flex: 1;
}

/* ── AI Builder panel ── */
.fcs-ab-mode {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.fcs-anim-builder__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 300px;
}
.fcs-ab-chat {
  border-right: 1px solid var(--border);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(124, 58, 237, 0.02);
}
html[data-theme="light"] .fcs-ab-chat { background: #f8f5ff; border-right-color: #e2e8f0; }

.fcs-ab-chat-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--brand-purple);
  text-transform: uppercase;
}
.fcs-ab-prompt {
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 11px;
  color: #c4b5fd;
  line-height: 1.5;
  min-height: 48px;
  word-break: break-word;
}
html[data-theme="light"] .fcs-ab-prompt { color: #7c3aed; }

.fcs-ab-cursor {
  display: inline-block;
  width: 2px;
  height: 12px;
  background: var(--brand-purple);
  margin-left: 1px;
  vertical-align: middle;
  animation: fcs-ab-blink .7s step-end infinite;
}
@keyframes fcs-ab-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.fcs-ab-thinking {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  color: var(--text-secondary);
  opacity: 0;
  transition: opacity .3s;
}
.fcs-ab-thinking.fcs-ab-visible { opacity: 1; }
.fcs-ab-dots { display: flex; gap: 3px; }
.fcs-ab-dots span {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--text-secondary);
  animation: fcs-ab-bounce 1.2s infinite;
}
.fcs-ab-dots span:nth-child(2) { animation-delay: .2s; }
.fcs-ab-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes fcs-ab-bounce {
  0%, 80%, 100% { transform: scale(.6); opacity: .4; }
  40% { transform: scale(1); opacity: 1; }
}

.fcs-ab-confirm {
  font-size: 10px;
  color: #34d399;
  opacity: 0;
  transition: opacity .4s;
}
.fcs-ab-confirm.fcs-ab-visible { opacity: 1; }

.fcs-ab-input-mock {
  margin-top: auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 10px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fcs-ab-input-mock span { color: var(--brand-purple); }
html[data-theme="light"] .fcs-ab-input-mock { background: #f1f5f9; border-color: #e2e8f0; }

.fcs-ab-canvas {
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  position: relative;
  overflow: hidden;
}
.fcs-ab-field {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
  font-size: 10px;
}
html[data-theme="light"] .fcs-ab-field { background: #f8fafc; border-color: #e2e8f0; }
.fcs-ab-field.fcs-ab-in { opacity: 1; transform: translateY(0); }
.fcs-ab-field-icon { font-size: 12px; width: 22px; text-align: center; flex-shrink: 0; }
.fcs-ab-field-name { flex: 1; color: var(--text-primary); font-weight: 600; font-size: 10px; }
.fcs-ab-field-type {
  font-size: 9px;
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 6px;
  border-radius: 10px;
  color: var(--text-secondary);
}
html[data-theme="light"] .fcs-ab-field-type { background: #e2e8f0; color: #64748b; }
.fcs-ab-field-req { width: 6px; height: 6px; background: #f87171; border-radius: 50%; flex-shrink: 0; }

.fcs-ab-submit {
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.2), rgba(59, 130, 246, 0.15));
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 8px;
  padding: 8px 10px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: #c4b5fd;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
}
.fcs-ab-submit.fcs-ab-in { opacity: 1; transform: translateY(0); }

.fcs-ab-preview {
  position: absolute;
  inset: 0;
  background: #ffffff;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity .5s ease, transform .5s ease;
}
.fcs-ab-preview.fcs-ab-in { opacity: 1; transform: translateX(0); }
.fcs-ab-preview-label {
  font-size: 9px;
  font-weight: 700;
  color: #7c3aed;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.fcs-ab-fp-row span,
.fcs-ab-fp-half span {
  font-size: 9px;
  color: #374151;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}
.fcs-ab-fp-field {
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  height: 24px;
  background: #f8fafc;
  margin-bottom: 5px;
}
.fcs-ab-fp-half { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.fcs-ab-fp-submit {
  background: #7c3aed;
  border-radius: 6px;
  height: 28px;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
}

/* ── Booking panel ── */
.fcs-bk-step-txt {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.fcs-bk-body {
  padding: 20px 20px 36px;
  position: relative;
  min-height: 380px;
  overflow: hidden;
}

.fcs-step-indicator { display: flex; align-items: center; margin-bottom: 6px; }
.fcs-bk-dot {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: var(--text-secondary);
  transition: all .4s ease;
  flex-shrink: 0; z-index: 1;
}
.fcs-bk-dot.fcs-bk-dot-active { border-color: var(--brand-purple); background: rgba(124,58,237,.15); color: #c4b5fd; }
.fcs-bk-dot.fcs-bk-dot-done   { border-color: #34d399; background: rgba(52,211,153,.15); color: #34d399; }
html[data-theme="light"] .fcs-bk-dot { border-color: #e2e8f0; color: #94a3b8; }
html[data-theme="light"] .fcs-bk-dot.fcs-bk-dot-active { border-color: var(--brand-purple); background: rgba(124,58,237,.08); color: var(--brand-purple); }

.fcs-bk-line { flex: 1; height: 1px; background: var(--border); transition: background .4s; }
.fcs-bk-line.fcs-bk-line-done { background: #34d399; }

.fcs-bk-labels { display: flex; justify-content: space-between; margin-bottom: 20px; }
.fcs-bk-label { font-size: 9px; color: var(--text-secondary); transition: color .4s; width: 33.3%; text-align: center; }
.fcs-bk-label.fcs-bk-lbl-active { color: var(--brand-purple); }
.fcs-bk-label.fcs-bk-lbl-done   { color: #34d399; }
html[data-theme="light"] .fcs-bk-label.fcs-bk-lbl-active { color: var(--brand-purple); }

.fcs-bk-step-wrap { position: relative; min-height: 250px; overflow: hidden; }
.fcs-bk-step {
  position: absolute; top: 0; left: 0; right: 0;
  opacity: 0; transform: translateX(30px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
}
.fcs-bk-step.fcs-bk-active   { opacity: 1; transform: translateX(0); pointer-events: auto; }
.fcs-bk-step.fcs-bk-done-slide { opacity: 0; transform: translateX(-30px); }

/* Calendar */
.fcs-bk-cal-month { font-size: 11px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; text-align: center; }
.fcs-bk-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.fcs-bk-cal-header { text-align: center; font-size: 8px; color: var(--text-secondary); font-weight: 600; padding: 3px 0; }
.fcs-bk-cal-day { text-align: center; font-size: 10px; color: var(--text-secondary); padding: 5px 2px; border-radius: 6px; }
.fcs-bk-cal-day--unavail { color: rgba(255,255,255,0.12); }
.fcs-bk-cal-day--available { background: rgba(255,255,255,0.03); }
.fcs-bk-cal-day--today { border: 1px solid rgba(124,58,237,0.3); color: #c4b5fd; }
.fcs-bk-cal-day--selected { background: var(--brand-purple); color: #fff; font-weight: 700; }
html[data-theme="light"] .fcs-bk-cal-day--unavail { color: #d1d5db; }
html[data-theme="light"] .fcs-bk-cal-day--available { background: #f8fafc; color: #475569; }
html[data-theme="light"] .fcs-bk-cal-day--today { border-color: rgba(124,58,237,0.3); color: #7c3aed; }
html[data-theme="light"] .fcs-bk-cal-day--selected { background: #7c3aed; color: #fff; }

/* Time slots */
.fcs-bk-time-heading { font-size: 11px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.fcs-bk-time-sub { font-size: 10px; color: var(--text-secondary); margin-bottom: 14px; }
.fcs-bk-time-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.fcs-bk-slot {
  border: 1px solid var(--border);
  border-radius: 8px; padding: 8px;
  text-align: center; font-size: 11px; font-weight: 600; color: var(--text-secondary);
}
.fcs-bk-slot--booked { color: rgba(255,255,255,0.15); }
.fcs-bk-slot--available { background: rgba(255,255,255,0.03); }
.fcs-bk-slot--selected { background: rgba(124,58,237,0.15); border-color: var(--brand-purple); color: #c4b5fd; }
html[data-theme="light"] .fcs-bk-slot--booked { color: #d1d5db; }
html[data-theme="light"] .fcs-bk-slot--available { background: #f8fafc; color: #374151; }
html[data-theme="light"] .fcs-bk-slot--selected { background: rgba(124,58,237,0.08); border-color: #7c3aed; color: #7c3aed; }

/* Details form */
.fcs-bk-details-heading { font-size: 11px; font-weight: 700; color: var(--text-primary); margin-bottom: 14px; }
.fcs-bk-summary {
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.15);
  border-radius: 8px; padding: 10px 12px; margin-bottom: 14px;
  font-size: 10px; color: var(--text-secondary);
  display: flex; gap: 14px; flex-wrap: wrap;
}
.fcs-bk-summary span { color: #c4b5fd; font-weight: 600; }
html[data-theme="light"] .fcs-bk-summary { background: rgba(124,58,237,0.05); }
html[data-theme="light"] .fcs-bk-summary span { color: #7c3aed; }

.fcs-bk-field-label { font-size: 9px; color: var(--text-secondary); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.fcs-bk-field-input {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 8px; height: 32px; margin-bottom: 10px; padding: 0 10px;
  display: flex; align-items: center; font-size: 11px; color: var(--text-secondary);
}
.fcs-bk-field-input.fcs-bk-typed { border-color: rgba(124,58,237,0.35); color: #c4b5fd; }
html[data-theme="light"] .fcs-bk-field-input { background: #f8fafc; border-color: #e2e8f0; color: #374151; }
html[data-theme="light"] .fcs-bk-field-input.fcs-bk-typed { border-color: rgba(124,58,237,0.35); color: #7c3aed; }

.fcs-bk-confirm-btn {
  background: linear-gradient(90deg, var(--brand-purple), var(--brand-blue));
  border-radius: 8px; padding: 10px; text-align: center;
  font-size: 12px; font-weight: 700; color: #fff; margin-top: 4px;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.25);
}

/* Confirmation screen */
.fcs-bk-confirm-screen {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 24px; text-align: center;
  opacity: 0; transform: scale(.95);
  transition: opacity .5s ease, transform .5s ease;
  pointer-events: none;
}
.fcs-bk-confirm-screen.fcs-bk-active { opacity: 1; transform: scale(1); pointer-events: auto; }
.fcs-bk-check {
  width: 56px; height: 56px;
  background: rgba(52,211,153,.15); border: 2px solid #34d399;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 16px;
}
.fcs-bk-confirm-title { font-size: 16px; font-weight: 800; color: var(--text-primary); margin-bottom: 8px; }
.fcs-bk-confirm-detail { font-size: 11px; color: var(--text-secondary); line-height: 1.7; }
.fcs-bk-confirm-detail strong { color: var(--text-secondary); }

/* ── Comparison table v2 ── */
.fcs-compare-table thead th {
  padding: 14px 16px;
  font-size: 11px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
.fcs-compare-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 12px;
  color: var(--text-secondary);
}
.fcs-compare-table tbody tr:nth-child(even) td { background: rgba(255,255,255,0.015); }
.fcs-compare-table th.fcs-compare-table__highlight {
  background: linear-gradient(180deg, rgba(124,58,237,0.15), rgba(124,58,237,0.05));
  border-top: 2px solid var(--brand-purple);
  color: #c4b5fd;
  text-align: center;
}
.fcs-compare-table td.fcs-compare-table__highlight {
  background: rgba(124,58,237,0.04);
  text-align: center;
}
.fcs-compare-table th:not(.fcs-compare-table__highlight),
.fcs-compare-table td:not(.fcs-compare-table__highlight):not(:first-child) {
  text-align: center;
}
html[data-theme="light"] .fcs-compare-table tbody tr:nth-child(even) td { background: rgba(0,0,0,0.015); }
html[data-theme="light"] .fcs-compare-table td.fcs-compare-table__highlight { background: rgba(124,58,237,0.03); }

/* ── Testimonial avatar initials ── */
.fcs-testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.fcs-testi-card:nth-child(1) .fcs-testi-avatar { background: linear-gradient(135deg, #a78bfa, #60a5fa); }
.fcs-testi-card:nth-child(2) .fcs-testi-avatar { background: linear-gradient(135deg, #60a5fa, #67e8f9); }
.fcs-testi-card:nth-child(3) .fcs-testi-avatar { background: linear-gradient(135deg, #67e8f9, #34d399); }

/* ── CTA Panel v2 (gradient background) ── */
.fcs-cta-panel {
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.15) 0%,
    rgba(59, 130, 246, 0.10) 50%,
    rgba(6, 182, 212, 0.08) 100%
  );
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fcs-cta-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(124,58,237,0.12), transparent);
  pointer-events: none;
}
.fcs-cta-panel h2,
.fcs-cta-panel p { position: relative; }
.fcs-cta-panel p {
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 36px;
  font-size: 16px;
}
.fcs-cta-panel__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
html[data-theme="light"] .fcs-cta-panel {
  background: linear-gradient(135deg,
    rgba(124, 58, 237, 0.08) 0%,
    rgba(59, 130, 246, 0.05) 50%,
    rgba(6, 182, 212, 0.04) 100%);
  border-color: rgba(124, 58, 237, 0.15);
}

/* ==========================================================
   §20 — COMPREHENSIVE MOBILE & RESPONSIVE
   ========================================================== */

/* ── Global: prevent horizontal overflow ─────────────────── */
html, body { overflow-x: hidden; }
.fcs-container { min-width: 0; }

/* ── Hamburger → X animation ─────────────────────────────── */
.fcs-nav__toggle span { transition: transform 0.25s ease, opacity 0.2s ease; }
.fcs-nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.fcs-nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.fcs-nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu: slide-in panel ──────────────────────────── */
/* Override display:none / display:flex with transform-based slide */
.fcs-nav__mobile {
  display: flex !important;
  flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
}
.fcs-nav__mobile--open {
  transform: translateX(0);
  visibility: visible;
}

/* Mobile menu header */
.fcs-nav__mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 64px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.fcs-nav__mobile-logo {
  font-size: 17px;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fcs-nav__mobile-close {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.fcs-nav__mobile-close:hover { background: rgba(124,58,237,0.12); color: #a78bfa; }
html[data-theme="light"] .fcs-nav__mobile-close { background: var(--bg-elevated); }

/* Mobile menu links */
.fcs-nav__mobile-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  gap: 0;
}
.fcs-nav__mobile-inner a {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
}
.fcs-nav__mobile-inner a:hover { color: #a78bfa; }
.fcs-nav__mobile-inner a:last-of-type { border-bottom-color: transparent; }
html[data-theme="light"] .fcs-nav__mobile-inner a:hover { color: #7c3aed; }

/* Mobile theme toggle row */
.fcs-theme-toggle--mobile {
  font-size: 17px !important;
  padding: 14px 0 !important;
  border-radius: 0 !important;
  background: none !important;
  border: none !important;
  border-bottom: 1px solid var(--border) !important;
  justify-content: flex-start !important;
  width: 100%;
  gap: 12px !important;
  color: var(--text-primary) !important;
}
.fcs-theme-toggle--mobile .fcs-theme-toggle__label { font-size: 17px; font-weight: 600; }

/* Mobile menu CTA */
.fcs-nav__mobile-cta {
  padding: 20px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

/* ── Nav inner on small screens ──────────────────────────── */
@media (max-width: 768px) {
  .fcs-nav__inner { padding: 0 16px; gap: 8px; }
}

/* ── Hero: tighten on phones ─────────────────────────────── */
@media (max-width: 640px) {
  .fcs-hero { padding: 60px 0 40px; }
  .fcs-hero__inner { padding: 0 16px; gap: 36px; }
  .fcs-hero__heading { font-size: clamp(28px, 8vw, 38px); }
  .fcs-hero__sub { font-size: 15px; max-width: 100%; }
  .fcs-hero__btns { flex-direction: column; align-items: stretch; }
  .fcs-hero__btns .fcs-btn { justify-content: center; }
  .fcs-hero__stats { gap: 18px 28px; }
  .fcs-bcard { height: 300px; }
}
@media (max-width: 480px) {
  .fcs-hero { padding: 52px 0 36px; min-height: unset; }
  .fcs-bcard { height: 260px; }
  #fcs-fc-cal { display: none; }
  .fcs-hero__stat-num { font-size: 18px; }
}

/* ── Social proof bar ────────────────────────────────────── */
@media (max-width: 768px) {
  .fcs-proof-bar { padding: 24px 0; }
  .fcs-proof-bar__inner { flex-wrap: wrap; gap: 16px 0; padding: 0 16px; }
  .fcs-proof-divider { display: none; }
  .fcs-proof-stat { flex: 1 1 40%; min-width: 120px; }
}
@media (max-width: 480px) {
  .fcs-proof-stat strong { font-size: 18px; }
  .fcs-proof-stat { flex: 1 1 40%; }
}

/* ── Section headers ─────────────────────────────────────── */
@media (max-width: 768px) {
  .fcs-section-header { margin-bottom: 36px; }
  .fcs-section-header p { font-size: 15px; }
}
@media (max-width: 480px) {
  .fcs-section-header { margin-bottom: 24px; }
  :root { --section-padding: 52px 16px; }
}

/* ── Deep-dive sections ──────────────────────────────────── */
@media (max-width: 640px) {
  .fcs-deepdive { gap: 24px; }
  .fcs-deepdive__visual { min-height: 200px; border-radius: var(--radius-md); }
  .fcs-deepdive__desc { font-size: 15px; }
}

/* ── Feature cards ───────────────────────────────────────── */
@media (max-width: 480px) {
  .fcs-feature-grid--v2 { gap: 10px; margin-top: 28px; }
  .fcs-feature-card { padding: 18px; }
}

/* ── Comparison table ────────────────────────────────────── */
.fcs-compare-wrap { -webkit-overflow-scrolling: touch; touch-action: pan-x; }
@media (max-width: 640px) {
  .fcs-compare-table th,
  .fcs-compare-table td { padding: 10px 12px; font-size: 12px; }
}

/* ── Pricing cards ───────────────────────────────────────── */
@media (max-width: 480px) {
  .fcs-price-card { padding: 20px; }
  .fcs-price-amount { font-size: 30px; }
  .fcs-pricing-grid--4col { grid-template-columns: 1fr !important; max-width: 360px; margin-inline: auto; }
}

/* ── Testimonials ────────────────────────────────────────── */
@media (max-width: 640px) {
  .fcs-testi-grid { gap: 12px; }
}

/* ── CTA panel ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .fcs-cta-panel { padding: 52px 32px; border-radius: var(--radius-lg); }
  .fcs-cta-panel p { font-size: 15px; margin-bottom: 28px; }
}
@media (max-width: 480px) {
  .fcs-cta-panel { padding: 40px 20px; border-radius: var(--radius-md); }
  .fcs-cta-panel__btns { flex-direction: column; align-items: center; }
  .fcs-cta-panel__btns .fcs-btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* ── Blog page header ────────────────────────────────────── */
@media (max-width: 768px) {
  .fcs-blog-page-header { padding: 80px 20px 40px; }
  .fcs-blog-page-desc { font-size: 15px; margin-bottom: 24px; }
  .fcs-blog-container { padding-top: 32px; padding-bottom: 64px; }
  .fcs-blog-hero__body { padding: 24px 24px 28px; }
}
@media (max-width: 480px) {
  .fcs-blog-page-header { padding: 72px 16px 32px; }
  .fcs-blog-page-title { font-size: clamp(26px, 8vw, 36px); }
  .fcs-blog-hero__body { padding: 20px 16px 24px; }
  .fcs-blog-hero__excerpt { font-size: 14px; margin-bottom: 18px; }
  .fcs-blog-grid { gap: 16px; }
  .fcs-blog-card__body { padding: 16px; gap: 10px; }
}

/* ── Single post ─────────────────────────────────────────── */
@media (max-width: 640px) {
  .fcs-single-header { padding: 80px 20px 36px; }
  .fcs-single-excerpt { font-size: 16px; }
  .fcs-single-body { padding: 40px 20px 64px; }
}
@media (max-width: 480px) {
  .fcs-single-header { padding: 72px 16px 28px; }
  .fcs-single-title { font-size: clamp(22px, 6.5vw, 32px); }
  .fcs-single-excerpt { font-size: 15px; margin-bottom: 20px; }
  .fcs-single-body { padding: 32px 16px 56px; }
  .fcs-single-content { font-size: 15.5px; line-height: 1.75; }
  .fcs-single-thumb-wrap { padding: 0 16px; }
}

/* ── Footer ──────────────────────────────────────────────── */
@media (max-width: 640px) {
  .fcs-footer { padding: 44px 16px 24px; }
  .fcs-footer__bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}
/* Fix near-invisible footer text on dark bg */
.fcs-footer__copy { color: var(--text-muted); }
.fcs-footer__legal a { color: var(--text-muted); }
html[data-theme="light"] .fcs-footer__copy,
html[data-theme="light"] .fcs-footer__legal a { color: #64748b; }

/* ── Buttons: consistent touch targets ───────────────────── */
@media (max-width: 768px) {
  .fcs-btn { min-height: 44px; }
  .fcs-btn--sm { min-height: 38px; }
}

/* ── Generic utility: full-width buttons on narrow screens ── */
@media (max-width: 360px) {
  .fcs-btn { font-size: 14px; padding: 10px 20px; }
}
