﻿/* ═══════════════════════════════════════════════════════════════════════════
   ASI COST LAB - PREMIUM GLASSMORPHIC BLUE AUTHORITY (v7)
   Pure blue. Zero violet. Matched to industry page patterns.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  --fc-bg: #f8faff;
  --fc-bg-alt: #eef3ff;
  --fc-glass: rgba(255, 255, 255, 0.55);
  --fc-glass-strong: rgba(255, 255, 255, 0.85);
  --fc-glass-border: rgba(59, 130, 246, 0.12);
  --fc-glass-border-hover: rgba(59, 130, 246, 0.35);
  --fc-text-1: #0f172a;
  --fc-text-2: #334155;
  --fc-text-3: #64748b;
  --fc-accent: #0a58ca;
  --fc-accent-rgb: 10, 88, 202;
  --fc-accent-glow: rgba(10, 88, 202, 0.25);
  --fc-accent-soft: rgba(10, 88, 202, 0.07);
  --fc-card-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(255,255,255,0.8) inset;
  --fc-card-shadow-hover: 0 20px 60px rgba(59, 130, 246, 0.12), 0 0 0 1px rgba(255,255,255,0.9) inset;
  --fc-gradient: linear-gradient(135deg, #1a3a7a 0%, #0a58ca 50%, #3b82f6 100%);
  --fc-gradient-subtle: linear-gradient(135deg, rgba(10,88,202,0.08) 0%, rgba(59,130,246,0.04) 100%);
  --fc-blur: blur(20px);
  --fc-blur-heavy: blur(32px);
}

[data-theme="dark"] {
  --fc-bg: #000000;
  --fc-bg-alt: #0a0a0a;
  --fc-glass: rgba(15, 23, 42, 0.4);
  --fc-glass-strong: rgba(15, 23, 42, 0.8);
  --fc-glass-border: rgba(59, 130, 246, 0.12);
  --fc-glass-border-hover: rgba(59, 130, 246, 0.3);
  --fc-text-1: #e2e8f0;
  --fc-text-2: #94a3b8;
  --fc-text-3: #64748b;
  --fc-accent: #60a5fa;
  --fc-accent-rgb: 96, 165, 250;
  --fc-accent-glow: rgba(96, 165, 250, 0.2);
  --fc-accent-soft: rgba(96, 165, 250, 0.08);
  --fc-card-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255,255,255,0.03) inset;
  --fc-card-shadow-hover: 0 20px 60px rgba(96, 165, 250, 0.1), 0 0 30px rgba(96,165,250,0.05);
  --fc-gradient: linear-gradient(135deg, #3b82f6, #60a5fa);
  --fc-gradient-subtle: linear-gradient(135deg, rgba(96,165,250,0.06) 0%, rgba(59,130,246,0.03) 100%);
}


/* ═══════════════════════════════════════════════════════════════════════════
   STICKY SUB-NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */

.fc-sticky-nav {
  position: sticky;
  top: 72px;
  z-index: 90;
  background: rgba(248, 250, 255, 0.8);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

.fc-sticky-nav.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

[data-theme="dark"] .fc-sticky-nav {
  background: rgba(5, 10, 24, 0.8);
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.fc-sticky-nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.fc-sticky-nav-inner::-webkit-scrollbar { display: none; }

.fc-nav-dot {
  padding: 0.85rem 1.4rem;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--fc-text-3);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.fc-nav-dot:hover { color: var(--fc-text-1); }

.fc-nav-dot.active {
  color: var(--fc-accent);
  border-bottom-color: var(--fc-accent);
  font-weight: 700;
}


/* ═══════════════════════════════════════════════════════════════════════════
   SHARED COMPONENTS
   ═══════════════════════════════════════════════════════════════════════════ */

.fc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--fc-accent);
  margin-bottom: 1.2rem;
}

.fc-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--fc-gradient);
  border-radius: 1px;
}

.fc-section-title {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--fc-text-1);
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 1rem;
}

[data-theme="dark"] .fc-section-title {
  color: rgba(255, 255, 255, 0.95);
}

.fc-section-sub {
  max-width: 620px;
  margin: 0.5rem auto 0;
  color: var(--fc-text-2);
  font-size: 0.95rem;
  line-height: 1.75;
  text-align: center;
}

[data-theme="dark"] .fc-section-sub {
  color: rgba(255, 255, 255, 0.65);
}

.fc-centered { text-align: center; }
.fc-centered .fc-eyebrow { justify-content: center; }

/* Glass card */
.fc-glass-card {
  background: var(--fc-glass);
  backdrop-filter: var(--fc-blur);
  -webkit-backdrop-filter: var(--fc-blur);
  border: 1px solid var(--fc-glass-border);
  border-radius: 20px;
  box-shadow: var(--fc-card-shadow);
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.fc-glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--fc-gradient);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.fc-glass-card:hover {
  border-color: var(--fc-glass-border-hover);
  box-shadow: var(--fc-card-shadow-hover);
  transform: translateY(-6px);
}

.fc-glass-card:hover::before { opacity: 1; }

[data-theme="dark"] .fc-glass-card {
  background: rgba(15, 23, 42, 0.45);
}

/* Icon box */
.fc-icon-box {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fc-accent-soft);
  border: 1px solid rgba(var(--fc-accent-rgb), 0.15);
  border-radius: 14px;
  font-size: 1.15rem;
  color: var(--fc-accent);
  margin-bottom: 1.2rem;
  transition: all 0.3s ease;
}

.fc-glass-card:hover .fc-icon-box {
  background: rgba(var(--fc-accent-rgb), 0.15);
  transform: scale(1.08);
  box-shadow: 0 0 24px rgba(var(--fc-accent-rgb), 0.2);
}

[data-theme="dark"] .fc-icon-box {
  background: rgba(96, 165, 250, 0.12);
  border-color: rgba(96, 165, 250, 0.2);
  color: #60a5fa;
  box-shadow: 0 0 16px rgba(96, 165, 250, 0.08);
}


/* ═══════════════════════════════════════════════════════════════════════════
   SECTION 1: HERO
   ═══════════════════════════════════════════════════════════════════════════ */

.fc-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 80px;
  background-color: var(--fc-bg);
  background-image:
    radial-gradient(ellipse at 30% 20%, rgba(var(--fc-accent-rgb), 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(rgba(var(--fc-accent-rgb), 0.12) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 28px 28px;
  background-position: center;
  text-align: center;
  overflow: hidden;
}

[data-theme="dark"] .fc-hero {
  background-color: #000000;
  background-image:
    radial-gradient(ellipse at 30% 20%, rgba(var(--fc-accent-rgb), 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 28px 28px;
}

/* Mesh blobs */
.fc-hero .mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  animation: fcBlobFloat 22s ease-in-out infinite;
  pointer-events: none;
}

.fc-hero .mesh-blob-1 {
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(var(--fc-accent-rgb), 0.35), transparent 70%);
  top: -15%; left: -8%;
}

.fc-hero .mesh-blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25), transparent 70%);
  bottom: -20%; right: -5%;
  animation-delay: -8s;
}

.fc-hero .mesh-blob-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2), transparent 70%);
  top: 35%; left: 55%;
  animation-delay: -16s;
}

[data-theme="dark"] .fc-hero .mesh-blob { opacity: 0.5; }

/* Centered content glow */
.fc-hero-content::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(var(--fc-accent-rgb), 0.06), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

[data-theme="dark"] .fc-hero-content::before {
  background: radial-gradient(ellipse, rgba(var(--fc-accent-rgb), 0.1), transparent 70%);
}

@keyframes fcBlobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(35px, -45px) scale(1.06); }
  66% { transform: translate(-25px, 25px) scale(0.94); }
}

.fc-hero .container-hook { position: relative; z-index: 2; }

.fc-hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.fc-hero h1 {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--fc-text-1);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 0.6rem;
}

[data-theme="dark"] .fc-hero h1 {
  color: #ffffff;
}

.fc-hero h1 .gradient-text,
.fc-section-title .gradient-text {
  background: var(--fc-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* "The Engineering Facility" - proper heading */
.fc-hero-heading {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--fc-text-1);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 2.5rem;
}

[data-theme="dark"] .fc-hero-heading {
  color: rgba(255, 255, 255, 0.95);
}

.fc-hero-sub {
  font-size: 1.05rem;
  color: var(--fc-text-2);
  max-width: 780px;
  margin: 0 auto 1.5rem;
  line-height: 1.85;
}

[data-theme="dark"] .fc-hero-sub {
  color: rgba(255, 255, 255, 0.72);
}

.fc-hero-sub-deploy {
  margin-top: 0;
  margin-bottom: 3rem;
  font-size: 0.95rem;
  color: var(--fc-text-3);
  font-style: italic;
}

[data-theme="dark"] .fc-hero-sub-deploy {
  color: rgba(255, 255, 255, 0.55);
}

/* Thin decorative separator before metrics */
.fc-metrics-row::before {
  content: '';
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--fc-gradient);
  border-radius: 2px;
}

/* Metrics - freestanding row, no card */
.fc-metrics-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-top: 2rem;
}

.fc-metric-item {
  text-align: center;
}

.fc-metric-val {
  display: block;
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 2rem;
  font-weight: 800;
  background: var(--fc-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.fc-metric-label {
  display: block;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.62rem;
  color: var(--fc-text-3);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

[data-theme="dark"] .fc-metric-val {
  background: linear-gradient(135deg, #60a5fa, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="dark"] .fc-metric-label {
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 768px) {
  .fc-metrics-row {
    flex-wrap: wrap;
    gap: 2.5rem 3rem;
  }
  .fc-metric-item {
    flex: 0 0 calc(50% - 1.5rem);
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   SECTION 2: INSTRUMENTS & CAPABILITY
   ═══════════════════════════════════════════════════════════════════════════ */

.fc-instruments {
  padding: 5rem 0;
  background: var(--fc-bg-alt);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .fc-instruments { background: #050810; }

.fc-instruments::before {
  content: '';
  position: absolute;
  top: 50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(var(--fc-accent-rgb), 0.08), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

/* Instrument grid */
.fc-inst-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1200px) { .fc-inst-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .fc-inst-grid { grid-template-columns: 1fr; } }

.fc-inst-card {
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Premium top accent line */
.fc-inst-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--fc-gradient);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.fc-inst-card:hover::before {
  opacity: 1;
}

.fc-inst-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--fc-card-shadow-hover);
}

[data-theme="dark"] .fc-inst-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .fc-inst-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(96, 165, 250, 0.25);
  box-shadow: 0 8px 32px rgba(96, 165, 250, 0.1), 0 0 0 1px rgba(96, 165, 250, 0.08);
}

.fc-inst-wide {
  grid-column: span 2;
}

@media (max-width: 1200px) { .fc-inst-wide { grid-column: span 1; } }

.fc-inst-tall {
  grid-row: span 2;
}

@media (max-width: 1200px) { .fc-inst-tall { grid-row: span 1; } }

/* Full-width deployment card */
.fc-inst-deploy {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  padding: 0;
  overflow: hidden;
}

.fc-inst-deploy::before { display: none; }

/* Left panel: 30% icons */
.fc-deploy-icons {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.8rem;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, rgba(var(--fc-accent-rgb), 0.06), rgba(var(--fc-accent-rgb), 0.02));
  border-right: 1px solid rgba(var(--fc-accent-rgb), 0.1);
}

[data-theme="dark"] .fc-deploy-icons {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.08), rgba(96, 165, 250, 0.02));
  border-right-color: rgba(255, 255, 255, 0.06);
}

.fc-deploy-icon-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: default;
  transition: transform 0.3s ease;
}

.fc-deploy-icon-item:hover {
  transform: translateX(6px);
}

.fc-deploy-icon-item:hover i {
  background: rgba(var(--fc-accent-rgb), 0.18);
  box-shadow: 0 0 16px rgba(var(--fc-accent-rgb), 0.15);
  transform: scale(1.1);
}

[data-theme="dark"] .fc-deploy-icon-item:hover i {
  background: rgba(96, 165, 250, 0.2);
  box-shadow: 0 0 20px rgba(96, 165, 250, 0.2);
}

.fc-deploy-icon-item i {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fc-accent-soft);
  border: 1px solid rgba(var(--fc-accent-rgb), 0.15);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--fc-accent);
  transition: all 0.3s ease;
}

[data-theme="dark"] .fc-deploy-icon-item i {
  background: rgba(96, 165, 250, 0.12);
  border-color: rgba(96, 165, 250, 0.2);
  color: #60a5fa;
}

.fc-deploy-icon-item span {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fc-text-2);
  letter-spacing: 0.01em;
}

[data-theme="dark"] .fc-deploy-icon-item span {
  color: rgba(255, 255, 255, 0.7);
}

/* Right panel: 70% text */
.fc-deploy-body {
  flex: 1;
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fc-deploy-body h3 {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fc-text-1);
  margin-bottom: 0.8rem;
}

[data-theme="dark"] .fc-deploy-body h3 {
  color: #ffffff;
}

.fc-deploy-body p {
  font-size: 0.92rem;
  color: var(--fc-text-3);
  line-height: 1.85;
  margin: 0;
  letter-spacing: 0.01em;
}

[data-theme="dark"] .fc-deploy-body p {
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 768px) {
  .fc-inst-deploy { flex-direction: column; }
  .fc-deploy-icons {
    flex: none;
    flex-direction: row;
    justify-content: center;
    border-right: none;
    border-bottom: 1px solid rgba(var(--fc-accent-rgb), 0.1);
    padding: 1.5rem;
  }
  .fc-deploy-body { padding: 1.5rem 2rem; }
}

@media (max-width: 640px) { .fc-inst-deploy { grid-column: 1; } }

.fc-inst-card-top {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.fc-inst-card-top .fc-icon-box {
  margin-bottom: 0;
  width: 48px;
  height: 48px;
  min-width: 48px;
}

.fc-inst-card h3 {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fc-text-1);
  margin-bottom: 0;
}

[data-theme="dark"] .fc-inst-card h3 {
  color: #ffffff;
}

.fc-inst-desc {
  font-size: 0.88rem;
  color: var(--fc-text-3);
  line-height: 1.6;
  margin-bottom: auto;
}

[data-theme="dark"] .fc-inst-desc {
  color: rgba(255, 255, 255, 0.65);
}

.fc-inst-list {
  list-style: none;
  padding: 0; margin: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 1rem;
}

[data-theme="dark"] .fc-inst-list { border-color: rgba(255,255,255,0.05); }

.fc-inst-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.82rem;
  color: var(--fc-text-2);
  font-weight: 500;
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

[data-theme="dark"] .fc-inst-list li {
  color: rgba(255, 255, 255, 0.75);
}

.fc-inst-list li::before {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0; top: 0.15rem;
  font-size: 0.5rem;
  color: var(--fc-accent);
}

/* Partner badge */
.fc-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.8rem;
  padding: 0.3rem 0.7rem;
  background: var(--fc-accent-soft);
  border: 1px solid rgba(var(--fc-accent-rgb), 0.12);
  border-radius: 100px;
  font-family: var(--font-mono, monospace);
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--fc-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fc-partner-badge i { font-size: 0.55rem; }

/* Deployment note (AFTER instruments) */
.fc-deploy-note {
  max-width: 1000px;
  margin: 3.5rem auto 0;
}

.fc-deploy-note-inner {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.5rem 3rem;
  background: var(--fc-glass);
  backdrop-filter: var(--fc-blur);
  -webkit-backdrop-filter: var(--fc-blur);
  border: 1px solid var(--fc-glass-border);
  border-radius: 20px;
  box-shadow: var(--fc-card-shadow);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .fc-deploy-note-inner {
  background: rgba(15, 23, 42, 0.45);
}

.fc-deploy-note-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: var(--fc-gradient);
}

.fc-deploy-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fc-accent-soft);
  border: 1px solid rgba(var(--fc-accent-rgb), 0.15);
  border-radius: 16px;
  font-size: 1.3rem;
  color: var(--fc-accent);
}

.fc-deploy-text p {
  font-size: 0.95rem;
  color: var(--fc-text-2);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.fc-deploy-text strong {
  color: var(--fc-text-1);
  font-weight: 600;
}

@media (max-width: 768px) {
  .fc-deploy-note-inner { flex-direction: column; gap: 1.5rem; padding: 2rem; }
}

.fc-subtle-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono, monospace);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fc-accent);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(var(--fc-accent-rgb), 0.2);
  border-radius: 100px;
  transition: all 0.3s ease;
}

.fc-subtle-cta:hover {
  background: rgba(var(--fc-accent-rgb), 0.06);
  border-color: rgba(var(--fc-accent-rgb), 0.4);
  transform: translateY(-2px);
}

.fc-subtle-cta i {
  font-size: 0.6rem;
  animation: fcBounceDown 2s ease-in-out infinite;
}

@keyframes fcBounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}


/* ═══════════════════════════════════════════════════════════════════════════
   SECTION 3: PROPRIETARY DATA CAPTURE SYSTEMS
   ═══════════════════════════════════════════════════════════════════════════ */

.fc-data-capture {
  padding: 5rem 0;
  background: var(--fc-bg);
  position: relative;
}

.fc-dc-large-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 1200px;
  margin: 3.5rem auto 0;
}

.fc-dc-large-item {
  display: flex;
  align-items: stretch;
  gap: 4rem;
}

.fc-dc-large-item.reverse {
  flex-direction: row-reverse;
}

@media (max-width: 900px) {
  .fc-dc-large-item, .fc-dc-large-item.reverse {
    flex-direction: column;
    gap: 2rem;
  }
}

.fc-dc-large-video {
  flex: 1.2;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--fc-card-shadow);
  border: 1px solid var(--fc-glass-border);
  min-height: 300px;
}

.fc-dc-large-video video,
.fc-dc-large-video iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  border: none;
}

.fc-dc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.1) 0%, rgba(10,88,202,0.15) 100%);
  pointer-events: none;
  z-index: 2;
}

.fc-dc-large-content {
  flex: 1;
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fc-dc-number {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(var(--fc-accent-rgb), 0.1);
  line-height: 1;
  margin-bottom: -1rem;
  text-align: right;
  pointer-events: none;
}

[data-theme="dark"] .fc-dc-number {
  color: rgba(96, 165, 250, 0.15);
}

.fc-dc-large-content h3 {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--fc-text-1);
  margin-bottom: 1.2rem;
}

[data-theme="dark"] .fc-dc-large-content h3 {
  color: #ffffff;
}

.fc-dc-large-content p {
  font-size: 0.95rem;
  color: var(--fc-text-2);
  line-height: 1.8;
}

[data-theme="dark"] .fc-dc-large-content p {
  color: rgba(255, 255, 255, 0.65);
}

[data-theme="dark"] .fc-dc-large-content {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .fc-dc-large-video {
  border-color: rgba(255, 255, 255, 0.08);
}


/* ═══════════════════════════════════════════════════════════════════════════
   SECTION 4: COST LAB - END-TO-END PROGRAM
   ═══════════════════════════════════════════════════════════════════════════ */

.fc-cost-lab {
  padding: 5rem 0;
  background: var(--fc-bg-alt);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .fc-cost-lab { background: #0a0f1a; }

.fc-cost-lab::before {
  content: '';
  position: absolute;
  bottom: -20%; left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(var(--fc-accent-rgb), 0.08), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

/* Dark mode section-level text overrides */
[data-theme="dark"] .fc-cost-lab .fc-section-title { color: #ffffff; }
[data-theme="dark"] .fc-cost-lab .fc-section-sub { color: rgba(255, 255, 255, 0.65); }
[data-theme="dark"] .fc-cost-lab .fc-section-sub strong { color: #60a5fa; font-weight: 700; }
[data-theme="dark"] .fc-cost-lab .fc-eyebrow { color: rgba(96, 165, 250, 0.9); border-color: rgba(96, 165, 250, 0.25); }

/* Phase Grid */
.fc-phase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 1024px) { .fc-phase-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .fc-phase-grid { grid-template-columns: 1fr; } }

/* Phase Card */
.fc-phase-card {
  position: relative;
  background: var(--fc-glass);
  backdrop-filter: var(--fc-blur);
  -webkit-backdrop-filter: var(--fc-blur);
  border: 1px solid var(--fc-glass-border);
  border-radius: 20px;
  padding: 2.5rem 2rem 2rem;
  box-shadow: var(--fc-card-shadow);
  overflow: hidden;
  transition: all 0.4s ease;
}

.fc-phase-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--fc-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fc-phase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(var(--fc-accent-rgb), 0.12);
}

.fc-phase-card:hover::before { opacity: 1; }

[data-theme="dark"] .fc-phase-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  border-left: 3px solid rgba(96, 165, 250, 0.25);
}

[data-theme="dark"] .fc-phase-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-left-color: rgba(96, 165, 250, 0.5);
  box-shadow: 0 16px 48px rgba(96, 165, 250, 0.12);
}

.fc-phase-num {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(var(--fc-accent-rgb), 0.08);
  line-height: 1;
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  pointer-events: none;
}

[data-theme="dark"] .fc-phase-num {
  color: rgba(96, 165, 250, 0.12);
}

.fc-phase-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fc-accent-soft);
  border: 1px solid rgba(var(--fc-accent-rgb), 0.15);
  border-radius: 14px;
  font-size: 1.1rem;
  color: var(--fc-accent);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.fc-phase-card:hover .fc-phase-icon {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(var(--fc-accent-rgb), 0.15);
}

[data-theme="dark"] .fc-phase-icon {
  background: rgba(96, 165, 250, 0.12);
  border-color: rgba(96, 165, 250, 0.2);
  color: #60a5fa;
}

.fc-phase-card h3 {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fc-text-1);
  margin-bottom: 1.2rem;
  line-height: 1.35;
}

[data-theme="dark"] .fc-phase-card h3 { color: #ffffff; }

.fc-phase-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fc-phase-list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.82rem;
  color: var(--fc-text-3);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0.65rem;
}

[data-theme="dark"] .fc-phase-list li { color: rgba(255, 255, 255, 0.72); }

.fc-phase-list li::before {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.15rem;
  font-size: 0.45rem;
  color: var(--fc-accent);
}

[data-theme="dark"] .fc-phase-list li::before {
  color: #60a5fa;
}

/* Outcome Row */
.fc-outcome-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) { .fc-outcome-row { grid-template-columns: 1fr; } }

.fc-outcome-badge {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 2rem;
  background: var(--fc-glass);
  backdrop-filter: var(--fc-blur);
  -webkit-backdrop-filter: var(--fc-blur);
  border: 1px solid var(--fc-glass-border);
  border-radius: 16px;
  box-shadow: var(--fc-card-shadow);
  transition: all 0.3s ease;
}

.fc-outcome-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(var(--fc-accent-rgb), 0.1);
}

[data-theme="dark"] .fc-outcome-badge {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  border-top: 2px solid rgba(96, 165, 250, 0.2);
}

[data-theme="dark"] .fc-outcome-badge:hover {
  background: rgba(255, 255, 255, 0.06);
  border-top-color: rgba(96, 165, 250, 0.4);
  box-shadow: 0 8px 32px rgba(96, 165, 250, 0.1);
}

.fc-outcome-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fc-accent-soft);
  border: 1px solid rgba(var(--fc-accent-rgb), 0.15);
  border-radius: 12px;
  font-size: 1rem;
  color: var(--fc-accent);
}

[data-theme="dark"] .fc-outcome-icon {
  background: rgba(96, 165, 250, 0.12);
  border-color: rgba(96, 165, 250, 0.2);
  color: #60a5fa;
}

.fc-outcome-text h4 {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fc-text-1);
  margin-bottom: 0.4rem;
}

[data-theme="dark"] .fc-outcome-text h4 { color: #ffffff; }

.fc-outcome-text p {
  font-size: 0.82rem;
  color: var(--fc-text-3);
  line-height: 1.6;
  margin: 0;
}

[data-theme="dark"] .fc-outcome-text p { color: rgba(255, 255, 255, 0.65); }

/* Outcomes Section */
.fc-outcomes-section {
  margin-top: 4rem;
}

.fc-outcomes-heading {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fc-text-1);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

[data-theme="dark"] .fc-outcomes-heading { color: #ffffff; }

.fc-outcome-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fc-outcome-details li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.82rem;
  color: var(--fc-text-3);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0.45rem;
}

[data-theme="dark"] .fc-outcome-details li { color: rgba(255, 255, 255, 0.65); }

.fc-outcome-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--fc-accent);
}

[data-theme="dark"] .fc-outcome-details li::before {
  background: #60a5fa;
}


/* ═══════════════════════════════════════════════════════════════════════════
   SECTION 5: PIPELINE
   ═══════════════════════════════════════════════════════════════════════════ */

.fc-pipeline {
  padding: 5rem 0;
  background: var(--fc-bg);
  position: relative;
}

[data-theme="dark"] .fc-pipeline { background: #0a0f1a; }

/* Dark mode section text */
[data-theme="dark"] .fc-pipeline .fc-section-title { color: #ffffff; }
[data-theme="dark"] .fc-pipeline .fc-eyebrow { color: rgba(96, 165, 250, 0.9); border-color: rgba(96, 165, 250, 0.25); }

.fc-pipe-wrapper {
  background: var(--fc-glass);
  backdrop-filter: var(--fc-blur);
  -webkit-backdrop-filter: var(--fc-blur);
  border: 1px solid var(--fc-glass-border);
  border-radius: 24px;
  padding: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  box-shadow: var(--fc-card-shadow);
  max-width: 1200px;
  margin: 3.5rem auto 0;
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .fc-pipe-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.fc-pipe-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--fc-gradient);
}

@media (max-width: 900px) {
  .fc-pipe-wrapper { grid-template-columns: 1fr; padding: 3rem; gap: 0; }
}

.fc-pipe-step {
  display: flex;
  flex-direction: column;
  position: relative;
}

.fc-pipe-step:not(:last-child)::after {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 5px; right: -1rem;
  color: var(--fc-accent);
  font-size: 1.2rem;
  opacity: 0.15;
  animation: fcPulse 2.5s infinite;
}

[data-theme="dark"] .fc-pipe-step:not(:last-child)::after {
  color: #60a5fa;
  opacity: 0.4;
}

.fc-pipe-step:nth-child(1)::after { animation-delay: 0s; }
.fc-pipe-step:nth-child(2)::after { animation-delay: 0.8s; }
.fc-pipe-step:nth-child(3)::after { animation-delay: 1.6s; }

@keyframes fcPulse {
  0%, 100% { opacity: 0.15; transform: scale(1) translateX(0); }
  30% { opacity: 1; transform: scale(1.3) translateX(3px); }
  60% { opacity: 0.15; transform: scale(1) translateX(0); }
}

@media (max-width: 900px) {
  .fc-pipe-step {
    padding-left: 2.5rem;
    padding-bottom: 2.5rem;
    border-left: 2px solid rgba(var(--fc-accent-rgb), 0.12);
  }
  .fc-pipe-step:last-child { border-left-color: transparent; padding-bottom: 0; }
  .fc-pipe-step:not(:last-child)::after { display: none; }

  .fc-pipe-num {
    position: absolute !important;
    left: -0.85rem !important; top: 0 !important;
    width: 1.7rem !important; height: 1.7rem !important;
    border-radius: 50% !important;
    background: var(--fc-accent) !important;
    color: #fff !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    font-size: 0.65rem !important;
    letter-spacing: 0 !important;
    box-shadow: 0 0 12px rgba(var(--fc-accent-rgb), 0.3) !important;
  }
}

.fc-pipe-num {
  font-family: var(--font-mono, monospace);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fc-accent);
  margin-bottom: 0.6rem;
  letter-spacing: 2px;
}

[data-theme="dark"] .fc-pipe-num { color: #60a5fa; }

.fc-pipe-step h4 {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--fc-text-1);
  margin-bottom: 0.75rem;
}

[data-theme="dark"] .fc-pipe-step h4 { color: #ffffff; }

.fc-pipe-step p {
  font-size: 0.88rem;
  color: var(--fc-text-3);
  line-height: 1.6;
}

[data-theme="dark"] .fc-pipe-step p { color: rgba(255, 255, 255, 0.68); }

.fc-pipe-detail p {
  font-size: 0.8rem !important;
  color: var(--fc-text-3) !important;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(0,0,0,0.04);
  margin-top: 0.75rem;
}

[data-theme="dark"] .fc-pipe-detail p {
  color: rgba(255, 255, 255, 0.55) !important;
  border-top-color: rgba(255,255,255,0.06);
}


/* ═══════════════════════════════════════════════════════════════════════════
   SECTION 6: CTA (Industry page style - contained card)
   ═══════════════════════════════════════════════════════════════════════════ */

.fc-cta-section {
  padding: 4rem 0 5rem;
  background: var(--fc-bg-alt);
}

[data-theme="dark"] .fc-cta-section { background: #060a14; }

.fc-cta-card {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 4.5rem 4rem;
  border-radius: 28px;
  background: linear-gradient(135deg, #0f1b4d 0%, #1e3a8a 35%, #312e81 70%, #4338ca 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Shimmer overlay for premium depth */
.fc-cta-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 25% 15%, rgba(59,130,246,0.15) 0%, transparent 55%),
              radial-gradient(ellipse at 75% 85%, rgba(99,102,241,0.12) 0%, transparent 50%);
  pointer-events: none;
}

[data-theme="dark"] .fc-cta-card {
  background: linear-gradient(135deg, rgba(15,23,42,0.95) 0%, rgba(30,58,138,0.5) 35%, rgba(49,46,129,0.4) 65%, rgba(15,23,42,0.9) 100%);
  border: 1px solid rgba(99, 102, 241, 0.15);
  box-shadow: 0 0 80px rgba(59, 130, 246, 0.06), 0 24px 48px rgba(0,0,0,0.4);
}

[data-theme="light"] .fc-cta-card {
  box-shadow: 0 24px 48px rgba(15, 27, 77, 0.25), 0 0 0 1px rgba(255,255,255,0.1) inset;
}

.fc-cta-card h2 {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.fc-cta-card .gradient-text {
  color: #bfdbfe; /* fallback for older browsers */
  background: linear-gradient(90deg, #bfdbfe, #e0e7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fc-cta-card > p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1;
}

/* Copiable email row */
.fc-cta-email-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.fc-cta-email-label {
  font-family: var(--font-mono, monospace);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  z-index: 1;
}

.fc-cta-email-value {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  padding: 0.8rem 1.6rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  user-select: none;
  -webkit-user-select: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.fc-cta-email-value:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.fc-cta-email-value:focus,
.fc-cta-email-value:active {
  outline: none;
  box-shadow: none;
}

.fc-cta-email-value::selection,
.fc-cta-email-value *::selection {
  background: transparent;
  color: inherit;
}

.fc-copy-icon {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.fc-cta-email-value:hover .fc-copy-icon {
  color: #ffffff;
}

.fc-email-text {
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.fc-cta-email-value.copied {
  background: rgba(52, 211, 153, 0.2);
  border-color: rgba(52, 211, 153, 0.4);
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.1);
}

@media (max-width: 640px) {
  .fc-cta-card { padding: 3rem 1.5rem; }
  .fc-cta-email-value { font-size: 0.8rem; padding: 0.6rem 1rem; word-break: break-all; }
  .fc-cta-card h2 { font-size: 1.4rem; }
  .fc-cta-card > p { font-size: 0.88rem; }
  .fc-cta-email-row { flex-direction: column; gap: 0.5rem; }
}
