/* =============================================================================
   FRAUDGUARD-LANDING.CSS — FraudGuard Product Landing Page
   Extends the shared Vacalion design system with FraudGuard-specific components
   ============================================================================= */

/* ─── Developers Nav Button ─────────────────────────────────────────────────── */
.fg-dev-btn {
  border: 1.5px solid var(--teal) !important;
  color: var(--teal-dark) !important;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
}
.fg-dev-btn:hover {
  background: rgba(15, 211, 172, 0.08) !important;
}
.fg-dev-btn svg { flex-shrink: 0; }

/* ─── Hero Visual: Transaction Analysis Window ──────────────────────────────── */
.fg-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.fg-analysis-window {
  width: 420px;
  background: #0A0F1E;
  border-radius: 20px;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.28),
    0 0 0 1px rgba(124, 58, 237, 0.18),
    0 0 60px rgba(124, 58, 237, 0.08);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.fg-window-chrome {
  background: #060B18;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(124,58,237,0.15);
}
.fg-chrome-dots {
  display: flex;
  gap: 6px;
}
.fg-chrome-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.fg-chrome-title {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.fg-live-indicator {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  color: #0FD3AC;
  font-weight: 600;
}
.fg-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0FD3AC;
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.fg-window-body {
  padding: 18px 20px 20px;
}

.fg-txn-info {
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.14);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 14px;
}
.fg-txn-info-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 4px;
  margin-bottom: 6px;
  font-size: 0.78rem;
}
.fg-txn-info-row:last-child { margin-bottom: 0; }
.fg-til { color: rgba(255,255,255,0.4); }
.fg-tiv { color: rgba(255,255,255,0.88); font-weight: 500; font-family: 'JetBrains Mono', monospace; }
.fg-tiv.fg-geo { font-family: 'Inter', sans-serif; color: #FFB84D; }

.fg-models-scanning {
  margin-bottom: 14px;
}
.fg-ms-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  font-weight: 600;
}
.fg-ms-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.fg-ms-row:last-child { border-bottom: none; }
.fg-ms-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  flex-shrink: 0;
  background: rgba(15,211,172,0.15);
  color: #0FD3AC;
}
.fg-ms-name {
  flex: 1;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-family: 'JetBrains Mono', monospace;
}
.fg-ms-bar {
  width: 64px;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}
.fg-ms-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--gradient-brand);
}
.fg-ms-score {
  font-size: 0.78rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  width: 36px;
  text-align: right;
}
.fg-ms-score.hi { color: #FF6B6B; }
.fg-ms-score.lo { color: #0FD3AC; }
.fg-ms-score.md { color: #FFB84D; }

.fg-verdict {
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.fg-verdict.blocked {
  background: rgba(255,107,107,0.1);
  border: 1px solid rgba(255,107,107,0.25);
}
.fg-verdict.approved {
  background: rgba(15,211,172,0.1);
  border: 1px solid rgba(15,211,172,0.25);
}
.fg-verdict-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 8px;
}
.fg-verdict.blocked .fg-verdict-badge { background: rgba(255,107,107,0.2); color: #FF6B6B; }
.fg-verdict.approved .fg-verdict-badge { background: rgba(15,211,172,0.2); color: #0FD3AC; }
.fg-verdict-details { flex: 1; }
.fg-verdict-risk {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}
.fg-verdict-time {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

/* Floating hero badges */
.fg-float-badge {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 8px 32px rgba(124,58,237,0.15), 0 0 0 1px rgba(124,58,237,0.1);
  display: flex;
  flex-direction: column;
  z-index: 10;
}
.fg-float-badge.fg-f1 { top: 24px; right: -28px; }
.fg-float-badge.fg-f2 { bottom: 40px; right: -24px; }
.fg-float-badge.fg-f3 { bottom: 120px; left: -28px; }
.fg-fb-val {
  font-size: 1.1rem;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.fg-fb-label {
  font-size: 0.68rem;
  color: var(--text-secondary);
  margin-top: 3px;
  white-space: nowrap;
}

/* ─── Stats Bar ─────────────────────────────────────────────────────────────── */
.fg-stats-bar {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.fg-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.fg-stat-item {
  text-align: center;
  padding: 8px 16px;
  border-right: 1px solid var(--border);
}
.fg-stat-item:last-child { border-right: none; }
.fg-stat-val {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fg-stat-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 6px;
  line-height: 1.3;
}

/* ─── How It Works Pipeline ─────────────────────────────────────────────────── */
.fg-how {
  padding: 100px 0;
  background: #fff;
}
.fg-how-header {
  text-align: center;
  margin-bottom: 72px;
}
.fg-pipeline {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr;
  align-items: center;
  gap: 0;
}
.fg-pipeline-arrow {
  display: flex;
  justify-content: center;
  color: var(--purple);
  opacity: 0.3;
}
.fg-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 30px;
  box-shadow: 0 2px 24px rgba(124,58,237,0.05);
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}
.fg-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(124,58,237,0.12);
}
.fg-step-num {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.fg-step h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.fg-step p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.fg-step-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 16px;
  background: rgba(15,211,172,0.1);
  color: var(--teal-dark);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 700;
}

/* ─── AI Models Grid ────────────────────────────────────────────────────────── */
.fg-models-section {
  padding: 100px 0;
  background: var(--bg-section);
}
.fg-models-header {
  text-align: center;
  margin-bottom: 56px;
}
.fg-models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fg-model-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(124,58,237,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}
.fg-model-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(124,58,237,0.12);
}
.fg-model-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.fg-model-accent {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-brand);
  flex-shrink: 0;
}
.fg-model-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}
.fg-model-status {
  margin-left: auto;
  background: rgba(15,211,172,0.1);
  color: var(--teal-dark);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.68rem;
  font-weight: 700;
  white-space: nowrap;
}
.fg-model-desc {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 18px;
}
.fg-model-metric {
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.fg-metric-val {
  font-weight: 800;
  font-size: 1rem;
  color: var(--purple);
}
.fg-metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ─── Live Transaction Feed ─────────────────────────────────────────────────── */
.fg-live-section {
  padding: 100px 0;
  background: #060B18;
}
.fg-live-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.fg-live-content .section-label { color: var(--teal); }
.fg-live-content .section-title { color: #fff; }
.fg-live-content .section-subtitle { color: rgba(255,255,255,0.55); margin-bottom: 36px; }
.fg-live-feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
}
.fg-live-feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.fg-live-feat-list li span.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 6px;
  flex-shrink: 0;
}
.fg-live-panel {
  background: #0D1425;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(124,58,237,0.18);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.fg-live-panel-bar {
  background: #0A0F1E;
  padding: 13px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(124,58,237,0.12);
}
.fg-live-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0FD3AC;
  animation: pulseGreen 1.5s ease-in-out infinite;
}
@keyframes pulseGreen {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(15,211,172,0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 0 4px rgba(15,211,172,0); }
}
.fg-live-panel-title {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}
.fg-live-count {
  margin-left: auto;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  font-family: 'JetBrains Mono', monospace;
}
.fg-txn-table-head {
  display: grid;
  grid-template-columns: 80px 1fr 60px 80px;
  gap: 12px;
  padding: 10px 20px 6px;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.25);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.fg-feed-list {
  padding: 4px 0;
  max-height: 320px;
  overflow: hidden;
}
.fg-feed-row {
  display: grid;
  grid-template-columns: 80px 1fr 60px 80px;
  gap: 12px;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.fg-feed-row:last-child { border-bottom: none; }
.fg-feed-txnid {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
}
.fg-feed-info { }
.fg-feed-merchant {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
}
.fg-feed-amount {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
}
.fg-feed-score {
  font-size: 0.82rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  text-align: right;
}
.fg-feed-score.r-hi { color: #FF6B6B; }
.fg-feed-score.r-lo { color: #0FD3AC; }
.fg-feed-score.r-md { color: #FFB84D; }
.fg-feed-verdict {
  padding: 4px 10px;
  border-radius: 16px;
  font-size: 0.65rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.fg-feed-verdict.v-block { background: rgba(255,107,107,0.15); color: #FF6B6B; }
.fg-feed-verdict.v-pass  { background: rgba(15,211,172,0.15);  color: #0FD3AC; }
.fg-feed-verdict.v-rev   { background: rgba(255,184,77,0.15);  color: #FFB84D; }

/* ─── Integration Code Window ───────────────────────────────────────────────── */
.fg-integration-section {
  padding: 100px 0;
  background: #fff;
}
.fg-integration-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.fg-int-content .section-label { }
.fg-int-content .section-title { }
.fg-int-feat-list {
  list-style: none;
  margin: 28px 0 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fg-int-feat-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.fg-int-feat-list li .tick {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(15,211,172,0.12);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
}
.fg-code-window {
  background: #060B18;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 28px 80px rgba(0,0,0,0.18),
    0 0 0 1px rgba(124,58,237,0.14);
}
.fg-code-chrome {
  padding: 13px 18px;
  background: #040810;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.fg-code-chrome-dots { display: flex; gap: 6px; }
.fg-code-chrome-dots span { width: 11px; height: 11px; border-radius: 50%; }
.fg-code-chrome-file {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  font-family: 'JetBrains Mono', monospace;
  margin-left: 4px;
}
.fg-code-body {
  padding: 28px 30px;
}
.fg-code-body pre {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  line-height: 2;
  color: #C9D1D9;
  margin: 0;
  white-space: pre;
}
.fg-code-body .c-k  { color: #A78BFA; }
.fg-code-body .c-s  { color: #0FD3AC; }
.fg-code-body .c-cm { color: #4B5563; }
.fg-code-body .c-f  { color: #93C5FD; }
.fg-code-body .c-p  { color: #F9A8D4; }
.fg-code-body .c-n  { color: #FCD34D; }
.fg-code-footer {
  padding: 16px 30px 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fg-code-lang {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  font-family: 'JetBrains Mono', monospace;
}
.fg-docs-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.fg-docs-link:hover { text-decoration: underline; }

/* ─── Pricing — API Tiers ───────────────────────────────────────────────────── */
.fg-pricing-section {
  padding: 100px 0;
  background: var(--bg-section);
}
.fg-pricing-header {
  text-align: center;
  margin-bottom: 56px;
}
.fg-pricing-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ─── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .fg-analysis-window { width: 360px; }
  .fg-pipeline { grid-template-columns: 1fr; gap: 20px; }
  .fg-pipeline-arrow { transform: rotate(90deg); }
  .fg-models-grid { grid-template-columns: repeat(2, 1fr); }
  .fg-live-inner { grid-template-columns: 1fr; gap: 48px; }
  .fg-integration-inner { grid-template-columns: 1fr; gap: 48px; }
  .fg-stats-grid { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .fg-stat-item:nth-child(3) { border-right: none; }
  .fg-stat-item:nth-child(4),
  .fg-stat-item:nth-child(5) { border-top: 1px solid var(--border); }
  .fg-stat-item:nth-child(5) { border-right: none; }
}

@media (max-width: 768px) {
  .fg-analysis-window { width: 100%; max-width: 360px; }
  .fg-float-badge { display: none; }
  .fg-models-grid { grid-template-columns: 1fr; }
  .fg-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .fg-stat-item { border-right: 1px solid var(--border); }
  .fg-stat-item:nth-child(2n) { border-right: none; }
  .fg-stat-item:nth-child(n+3) { border-top: 1px solid var(--border); }
  .fg-txn-table-head { display: none; }
  .fg-feed-row { grid-template-columns: 1fr 56px 68px; }
  .fg-feed-txnid, .fg-feed-id { display: none; }

  /* Prevent horizontal overflow on all major sections */
  .fg-hero,
  .fg-pipeline-section,
  .fg-models-section,
  .fg-live-section,
  .fg-stats-section,
  .fg-integration-section,
  .fg-pricing-section {
    overflow-x: hidden;
  }

  /* Hero inner: stack on mobile */
  .fg-hero .hero-inner {
    grid-template-columns: 1fr;
  }
}

/* =============================================================================
   ADDITIONAL / ALIAS CLASSES — covers alternate class names used in the HTML
   ============================================================================= */

/* ─── Product pill (hero area) ──────────────────────────────────────────────── */
.fg-product-pill {
  display: inline-block;
  margin-bottom: 20px;
  background: rgba(124,58,237,0.08);
  color: var(--purple);
  border: 1px solid rgba(124,58,237,0.18);
  border-radius: 8px;
  padding: 6px 14px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── Hero section override ─────────────────────────────────────────────────── */
.fg-hero {
  background: linear-gradient(160deg, rgba(124,58,237,0.06) 0%, rgba(167,139,250,0.04) 40%, rgba(15,211,172,0.03) 70%, transparent 100%);
}
.fg-hero-visual-wrap {
  overflow: visible;
  position: relative;
}

/* ─── Live dot alias (hero window) ─────────────────────────────────────────── */
.fg-live-dot-a {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0FD3AC;
  animation: blink 1.4s ease-in-out infinite;
}

/* ─── Transaction info grid aliases ─────────────────────────────────────────── */
.fg-txn-info-grid {
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.14);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 14px;
}
.fg-trow {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 4px;
  margin-bottom: 6px;
  font-size: 0.78rem;
}
.fg-trow:last-child { margin-bottom: 0; }
.fg-tl { color: rgba(255,255,255,0.4); }
.fg-tv {
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  font-family: 'JetBrains Mono', monospace;
}
.fg-geo-tag {
  font-family: 'Inter', sans-serif;
  color: #FFB84D;
}

/* ─── AI models scan aliases ────────────────────────────────────────────────── */
.fg-models-scan { margin-bottom: 14px; }
.fg-scan-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  font-weight: 600;
}
.fg-scan-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.fg-scan-row:last-child { border-bottom: none; }
.fg-ck {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  flex-shrink: 0;
  background: rgba(15,211,172,0.15);
  color: #0FD3AC;
}
.fg-cn {
  flex: 1;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-family: 'JetBrains Mono', monospace;
}
.fg-cbar {
  width: 64px;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}
.fg-cbar-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--gradient-brand);
}
.fg-cs {
  font-size: 0.78rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  width: 36px;
  text-align: right;
}
.fg-cs.hi { color: #FF6B6B; }
.fg-cs.lo { color: #0FD3AC; }
.fg-cs.md { color: #FFB84D; }

/* ─── Verdict aliases ───────────────────────────────────────────────────────── */
.fg-v-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 8px;
}
.blocked .fg-v-badge   { background: rgba(255,107,107,0.2); color: #FF6B6B; }
.approved .fg-v-badge  { background: rgba(15,211,172,0.2);  color: #0FD3AC; }
.fg-v-details { flex: 1; }
.fg-v-risk {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}
.fg-v-time {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

/* ─── Live section aliases ──────────────────────────────────────────────────── */
.fg-ldot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 6px;
  flex-shrink: 0;
}
.fg-live-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.fg-dev-btn-dark {
  border: 1.5px solid #0FD3AC !important;
  color: #0FD3AC !important;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
}
.fg-dev-btn-dark:hover {
  background: rgba(15,211,172,0.08) !important;
}

/* ─── Live feed aliases ─────────────────────────────────────────────────────── */
.fg-feed-id {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
}
.fg-feed-m {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
}
.fg-feed-a {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
}

/* ─── Integration content ───────────────────────────────────────────────────── */
.fg-int-content { }
.fg-tick {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(15,211,172,0.12);
  color: var(--teal-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ─── Ensemble card variant ─────────────────────────────────────────────────── */
.fg-model-card--ensemble {
  border-color: rgba(124,58,237,0.22);
  background: rgba(124,58,237,0.03);
}
.fg-model-status--purple {
  background: rgba(124,58,237,0.12);
  color: var(--purple);
}

/* ─── Score Breakdown Visual (Real-Time section) ────────────────────────────── */
.fg-score-visual {
  background: var(--bg-section);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(124,58,237,0.08);
}
.fg-sv-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.fg-sv-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.fg-sv-main-left { }
.fg-sv-sub {
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.fg-sv-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #FF6B6B;
  line-height: 1;
}
.fg-sv-bar-wrap { margin-bottom: 22px; }
.fg-sv-bar-track {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.fg-sv-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #7C3AED, #FF6B6B);
}
.fg-sv-rows { display: flex; flex-direction: column; gap: 10px; }
.fg-sv-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
}
.fg-sv-rn {
  color: var(--text-secondary);
  width: 140px;
  flex-shrink: 0;
}
.fg-sv-rt {
  flex: 1;
  height: 5px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.fg-sv-rf {
  height: 100%;
  border-radius: 2px;
  background: var(--purple);
}
.fg-sv-rv {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-secondary);
  width: 34px;
  text-align: right;
}
.fg-sv-verdict {
  margin-top: 18px;
  padding: 14px 16px;
  background: rgba(255,107,107,0.08);
  border-radius: 12px;
  border: 1px solid rgba(255,107,107,0.18);
  display: flex;
  align-items: center;
  gap: 12px;
}
.fg-sv-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255,107,107,0.15);
  color: #FF6B6B;
}
.fg-sv-time {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ─── Behavioral IQ Visual (Behavioral section) ─────────────────────────────── */
.fg-behav-visual {
  background: linear-gradient(135deg, rgba(124,58,237,0.05), rgba(15,211,172,0.03));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 8px 40px rgba(124,58,237,0.08);
}
.fg-bv-user {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.fg-bv-chart {
  width: 100%;
  margin-bottom: 18px;
  border-radius: 10px;
  background: rgba(255,255,255,0.5);
  overflow: visible;
}
.fg-bv-rows { display: flex; flex-direction: column; gap: 8px; }
.fg-bv-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.82rem;
  border: 1px solid var(--border);
  background: #fff;
}
.fg-bv-row span:first-child { color: var(--text-secondary); }
.fg-bv-row span:last-child  { font-weight: 700; color: var(--text-primary); }
.fg-bv-row.alert {
  background: rgba(255,107,107,0.05);
  border-color: rgba(255,107,107,0.2);
}
.fg-bv-row.alert span { color: #FF6B6B !important; }

/* ─── Custom Rules Visual (Rules section) ───────────────────────────────────── */
.fg-rules-visual {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 8px 40px rgba(124,58,237,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fg-rule {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
}
.fg-rule-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.fg-rule-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.fg-rule-dot.on { background: #0FD3AC; }
.fg-rule-name {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-primary);
  font-family: 'JetBrains Mono', monospace;
  flex: 1;
}
.fg-rule-state {
  margin-left: auto;
  font-size: 0.68rem;
  color: #0FD3AC;
  font-weight: 700;
}
.fg-rule-logic {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-family: 'JetBrains Mono', monospace;
  line-height: 1.5;
}
.fg-rule-add {
  padding: 14px 16px;
  border: 1px dashed var(--border);
  border-radius: 12px;
  font-size: 0.82rem;
  color: var(--purple);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.fg-rule-add:hover { opacity: 1; }

/* ─── Testimonials (FraudGuard 3-col override) ──────────────────────────────── */
.fg-testimonials .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .fg-testimonials .testimonials-grid { grid-template-columns: 1fr; }
}

/* ─── Pricing note ──────────────────────────────────────────────────────────── */
.fg-pricing-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 24px;
}
