/* ==================================================================
   Results / proof block — Five by Five
   Option A (paper · stat-card grid) · Option B (black band · list)
   ================================================================== */

.rb-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-800, #23282a); font-weight: 500;
}

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

.rb-head {
  margin: 18px 0 0; color: var(--ink-900);
  font-weight: 900; letter-spacing: -0.025em; line-height: 1.06;
  font-size: 46px; text-wrap: balance;
}
.rb-head--light { color: #fff; }

.rb-blurb {
  margin: 20px 0 0; color: var(--text-secondary);
  font-size: 18px; line-height: 1.6; font-weight: 500;
}
.rb-blurb--light { color: rgba(255,255,255,0.72); }

/* ---- Client logo wall ------------------------------------------- */
.rb-logos { display: flex; align-items: center; flex-wrap: wrap; gap: 44px; }
.rb-logo {
  font-size: 25px; font-weight: 800; letter-spacing: -0.02em;
  color: var(--ink-400); opacity: 0.85; white-space: nowrap;
  font-family: var(--font-display);
}
.rb-logos--light .rb-logo { color: #fff; opacity: 0.55; }

/* ================================================================== */
/*  OPTION A                                                           */
/* ================================================================== */
.rb-a { background: var(--surface-page); padding: 92px 80px 100px; }
.rb-a-head { max-width: 860px; margin: 0 auto; text-align: center; }
.rb-a-head .rb-blurb { max-width: 720px; margin-left: auto; margin-right: auto; }
.rb-a-logoslabel {
  margin: 56px 0 22px; text-align: center;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-muted);
}
.rb-a .rb-logos { justify-content: center; gap: 52px; }

.rb-a-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 56px;
}
.rb-card {
  display: flex; flex-direction: column; align-items: flex-start;
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg, 14px); padding: 28px 26px 24px;
  text-decoration: none; box-shadow: var(--shadow-sm);
  transition: transform 180ms var(--ease-out, ease), box-shadow 180ms var(--ease-out, ease), border-color 180ms var(--ease-out, ease);
}
.rb-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent-border); }
.rb-card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent-tint); color: var(--fbf-green, #28dc9a); margin-bottom: 20px;
  box-shadow: var(--glow-accent, 0 6px 20px rgba(40,220,154,0.35));
}
.rb-metric { font-weight: 900; font-size: 52px; line-height: 1; letter-spacing: -0.03em; }
.rb-card-label { margin-top: 10px; font-size: 15.5px; font-weight: 600; color: var(--text-primary); line-height: 1.35; }
.rb-cs {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 18px;
  font-size: 13px; font-weight: 700; color: var(--fbf-green, #28dc9a);
  font-family: var(--font-mono); letter-spacing: 0.02em;
}
.rb-card:hover .rb-cs { color: var(--green-700); }

/* ================================================================== */
/*  OPTION B                                                           */
/* ================================================================== */
.rb-b { position: relative; overflow: hidden; background: var(--surface-page); padding: 92px 80px 76px; color: var(--ink-900); }
.rb-b-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.rb-b-left { max-width: 560px; }
.rb-b-left .rb-head { font-size: 46px; }
.rb-b-left .rb-blurb { margin-bottom: 30px; }

.rb-greview { display: flex; width: fit-content; align-items: center; gap: 9px; margin-top: 22px; text-decoration: none; }
.rb-greview .hh-stars { color: #fbbc05; gap: 2px; }
.rb-greview-text { font-size: 15px; font-weight: 600; color: var(--ink-900); letter-spacing: -0.01em; }
.rb-greview-text b { font-weight: 800; }

.rb-b-right { display: flex; flex-direction: column; }
.rb-row {
  display: flex; align-items: center; gap: 22px;
  padding: 22px 6px; text-decoration: none; color: var(--ink-900);
  border-top: 1px solid var(--border-default);
  transition: padding-left 180ms var(--ease-out, ease);
}
.rb-row:last-child { border-bottom: 1px solid var(--border-default); }
.rb-row:hover { padding-left: 14px; }
.rb-row:hover, .rb-row:hover * { text-decoration: none; }
.rb-row-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent-tint); color: var(--fbf-green, #28dc9a);
  box-shadow: var(--glow-accent, 0 6px 20px rgba(40,220,154,0.35));
}
/* Glowing neon status dot (replaces per-row icon) */
.rb-dot {
  flex-shrink: 0;
  width: 12px; height: 12px; margin: 0 16px 0 6px; border-radius: 50%;
  background: var(--fbf-green);
  box-shadow: 0 0 0 0 rgba(40,220,154,0.55), 0 0 12px 2px rgba(40,220,154,0.75);
  animation: rb-pulse 2.2s var(--ease-out, ease) infinite;
}
@keyframes rb-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(40,220,154,0.55), 0 0 12px 2px rgba(40,220,154,0.75); }
  70%  { box-shadow: 0 0 0 9px rgba(40,220,154,0), 0 0 14px 3px rgba(40,220,154,0.55); }
  100% { box-shadow: 0 0 0 0 rgba(40,220,154,0), 0 0 12px 2px rgba(40,220,154,0.75); }
}
@media (prefers-reduced-motion: reduce) { .rb-dot { animation-duration: 3.2s; } }
.rb-metric--sm { font-size: 40px; min-width: 128px; }
.rb-row-text { flex: 1; }
.rb-row-label { font-size: 17px; font-weight: 600; color: var(--ink-900); }
.rb-row-client { margin-top: 3px; font-size: 13.5px; color: var(--text-muted); font-family: var(--font-mono); letter-spacing: 0.02em; }
.rb-row [data-lucide], .rb-row svg { color: var(--ink-400); transition: color 180ms var(--ease-out, ease), transform 180ms var(--ease-out, ease); }
.rb-row:hover svg, .rb-row:hover [data-lucide] { color: var(--fbf-green, #28dc9a); transform: translate(3px, -3px); }

.rb-b-logoswrap {
  position: relative; z-index: 1;
  margin-top: 64px; padding-top: 34px; border-top: 1px solid var(--border-default);
  display: flex; align-items: center; gap: 40px;
}
.rb-b-logoslabel { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; color: var(--text-muted); flex-shrink: 0; }
.rb-b-logoswrap .rb-logos { flex: 1; justify-content: space-between; gap: 28px; }
.rb-logo-img {
  height: 32px; width: auto; max-width: 128px; object-fit: contain;
  filter: brightness(0) saturate(100%);
  opacity: 0.5;
  transition: opacity 180ms var(--ease-out, ease);
}
.rb-logo-img:hover { opacity: 0.85; }

/* ---- Completing element: featured case-study cards -------------- */
.rb-cases-lead {
  display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap;
  margin-top: 66px; padding-top: 34px; border-top: 1px solid var(--border-default);
}
.rb-cases-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-800, #23282a); font-weight: 500;
}
.rb-cases-note { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink-900); }
.rb-cases {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  align-items: end; margin-top: 40px;
}
