/* ════════════════════════════════════════════════════════════════════════
 * OpsIQ — Premium Redesign Layer (PHASE_M3)
 *
 * A self-contained stylesheet that:
 *   1. Widens and re-skins the public-site footer (CTA ribbon + brand row +
 *      newsletter + 6-col grid + bottom strip).
 *   2. Adds animation utilities used throughout marketing pages — magnetic
 *      buttons, card tilt, gradient borders, shimmer, parallax orbs.
 *   3. Polishes the trimmed nav (smaller item count needs more breathing).
 *
 * Loaded after opsiq-saas-site.css + opsiq-premium.css so it can selectively
 * override anything from those layers without !important clutter.
 *
 * Theme-aware: uses the existing --op-* CSS variables. Both light + dark
 * themes inherit cleanly because every value resolves through them.
 * ════════════════════════════════════════════════════════════════════════ */

/* ── 0. Shared tokens for this redesign layer ─────────────────────────── */
:root {
  --op-rd-grad: linear-gradient(135deg, #2563eb 0%, #06b6d4 50%, #7c3aed 100%);
  --op-rd-grad-soft: linear-gradient(135deg, rgba(37,99,235,.18), rgba(124,58,237,.18));
  --op-rd-glass: rgba(255,255,255,.72);
  --op-rd-glass-bd: rgba(15,23,42,.08);
  --op-rd-shadow-lg: 0 32px 90px rgba(15,23,42,.16), 0 12px 32px rgba(15,23,42,.06);
  --op-rd-shadow-glow: 0 18px 60px rgba(37,99,235,.32);
}
html[data-theme="dark"] {
  --op-rd-glass: rgba(13,20,42,.6);
  --op-rd-glass-bd: rgba(180,200,255,.10);
  --op-rd-shadow-lg: 0 32px 90px rgba(0,0,0,.5), 0 12px 32px rgba(0,0,0,.32);
}

/* ── 1. Trimmed nav polish ────────────────────────────────────────────── */
.op-nav-link {
  position: relative;
  transition: color .25s ease, transform .25s ease;
}
.op-nav-link::after {
  content: '';
  position: absolute;
  left: 12px; right: 12px; bottom: 6px;
  height: 2px; border-radius: 2px;
  background: var(--op-rd-grad);
  transform: scaleX(0); transform-origin: center;
  transition: transform .35s cubic-bezier(.2,.9,.3,1);
}
.op-nav-link:hover::after,
.op-nav-link:focus-visible::after,
.op-nav-link.active::after { transform: scaleX(1); }
.op-nav-link:hover { transform: translateY(-1px); }

/* ── 2. Premium footer ────────────────────────────────────────────────── */
.op-footer-premium {
  position: relative;
  margin-top: 80px;
  padding: 0 0 32px;
  background: linear-gradient(180deg, transparent 0, rgba(37,99,235,.04) 14%, rgba(15,23,42,.02) 100%);
  overflow: hidden;
  isolation: isolate;
}
html[data-theme="dark"] .op-footer-premium {
  background: linear-gradient(180deg, transparent 0, rgba(37,99,235,.06) 14%, rgba(0,0,0,.36) 100%);
}

/* layered backdrop — orbs + grid */
.op-footer-premium .op-footer-bg {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden;
}
.op-footer-premium .op-orb-footer {
  position: absolute; left: -200px; top: 8%;
  width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.20), transparent 60%);
  filter: blur(40px);
  animation: opRdOrbDrift 22s ease-in-out infinite;
}
.op-footer-premium .op-orb-footer-2 {
  position: absolute; right: -240px; bottom: -120px;
  width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,.18), rgba(6,182,212,.10) 50%, transparent 70%);
  filter: blur(50px);
  animation: opRdOrbDrift 28s ease-in-out infinite reverse;
}
@keyframes opRdOrbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(40px, -30px) scale(1.06); }
}
.op-footer-premium .op-footer-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
  opacity: .65;
}
html[data-theme="dark"] .op-footer-premium .op-footer-grid-bg {
  background-image:
    linear-gradient(rgba(180,200,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180,200,255,.05) 1px, transparent 1px);
}

/* CTA ribbon */
.op-footer-cta-ribbon {
  position: relative;
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto 64px;
  padding: 4px;
  border-radius: 32px;
  background: var(--op-rd-grad);
  background-size: 200% 200%;
  animation: opRdRibbonShift 14s ease-in-out infinite;
  box-shadow: var(--op-rd-shadow-glow);
}
@keyframes opRdRibbonShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.op-footer-cta-ribbon .op-footer-cta-inner {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1.4fr) auto; gap: 32px;
  align-items: center;
  padding: 40px 48px;
  border-radius: 28px;
  background: var(--op-bg);
  overflow: hidden;
}
html[data-theme="dark"] .op-footer-cta-ribbon .op-footer-cta-inner { background: var(--op-bg2); }
.op-footer-cta-ribbon .op-footer-cta-glow {
  position: absolute; left: -200px; top: -260px;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(124,58,237,.22), transparent 65%);
  filter: blur(36px); pointer-events: none;
}
.op-footer-cta-ribbon h2 {
  margin: 8px 0 12px;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.018em;
  color: var(--op-text);
}
.op-footer-cta-ribbon p {
  margin: 0;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--op-muted);
}
.op-footer-cta-ribbon .op-footer-cta-actions {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
}
@media (max-width: 880px) {
  .op-footer-cta-ribbon .op-footer-cta-inner { grid-template-columns: 1fr; padding: 28px; }
  .op-footer-cta-ribbon h2 { font-size: 28px; }
}

/* Top brand row */
.op-footer-top {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto 48px;
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 56px;
  align-items: start;
}
@media (max-width: 980px) {
  .op-footer-top { grid-template-columns: 1fr; gap: 40px; }
}
.op-footer-brand .op-logo { margin-bottom: 12px; }
.op-footer-tagline {
  margin: 0 0 18px;
  font-size: 16px; line-height: 1.55;
  color: var(--op-muted);
  max-width: 480px;
}
.op-footer-pills {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px;
}
.op-footer-pill {
  display: inline-flex; align-items: center;
  padding: 7px 14px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .02em;
  color: var(--op-text);
  background: var(--op-rd-glass);
  border: 1px solid var(--op-rd-glass-bd);
  border-radius: 999px;
  backdrop-filter: blur(12px) saturate(140%);
  transition: transform .25s ease, border-color .25s ease, color .25s ease, background .25s ease;
}
.op-footer-pill:hover {
  transform: translateY(-2px);
  color: #fff;
  background: var(--op-rd-grad);
  border-color: transparent;
}

/* Newsletter */
.op-footer-newsletter {
  padding: 26px 28px;
  border-radius: 22px;
  background: var(--op-rd-glass);
  border: 1px solid var(--op-rd-glass-bd);
  backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 12px 32px rgba(15,23,42,.06);
  position: relative; overflow: hidden;
}
.op-footer-newsletter::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(37,99,235,.08), transparent 60%);
  pointer-events: none;
}
.op-footer-eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase;
  color: transparent;
  background: var(--op-rd-grad);
  -webkit-background-clip: text; background-clip: text;
}
.op-footer-newsletter h4 {
  margin: 0 0 6px;
  font-size: 22px; font-weight: 900; letter-spacing: -0.01em;
  color: var(--op-text);
}
.op-footer-newsletter p { margin: 0 0 16px; color: var(--op-muted); }
.op-footer-newsletter-form {
  display: flex; gap: 8px; margin-bottom: 18px;
  padding: 6px;
  background: var(--op-bg);
  border: 1px solid var(--op-rd-glass-bd);
  border-radius: 14px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.op-footer-newsletter-form:focus-within {
  border-color: rgba(37,99,235,.4);
  box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}
.op-footer-newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border: 0; outline: none; background: transparent;
  color: var(--op-text);
  font: inherit; font-size: 14px;
}
.op-footer-newsletter-form input::placeholder { color: var(--op-muted); }
.op-footer-newsletter-form button { white-space: nowrap; padding: 10px 16px; font-size: 13.5px; }

/* Social row */
.op-footer-social { display: flex; gap: 10px; }
.op-footer-social a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  color: var(--op-muted);
  background: var(--op-bg);
  border: 1px solid var(--op-rd-glass-bd);
  transition: transform .25s ease, color .25s ease, background .25s ease, border-color .25s ease;
}
.op-footer-social a:hover {
  transform: translateY(-2px) scale(1.04);
  color: #fff;
  background: var(--op-rd-grad);
  border-color: transparent;
}

/* 6-col link grid — wider canvas + refined hover */
.op-footer-premium .op-footer-main {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto 36px;
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 28px 32px;
}
@media (max-width: 1100px) {
  .op-footer-premium .op-footer-main { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .op-footer-premium .op-footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
}

.op-footer-premium .op-footer-title {
  font-size: 11.5px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--op-text);
  margin-bottom: 14px;
  position: relative;
  padding-left: 14px;
}
.op-footer-premium .op-footer-title::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--op-rd-grad);
  transform: translateY(-50%);
  box-shadow: 0 0 0 3px rgba(37,99,235,.14);
}
.op-footer-premium .op-footer-links { display: flex; flex-direction: column; gap: 10px; }
.op-footer-premium .op-footer-links a {
  display: flex; align-items: center; gap: 6px;
  padding: 4px 0;
  color: var(--op-muted);
  text-decoration: none;
  font-size: 13.5px; font-weight: 500;
  transition: color .2s ease, transform .25s ease;
  position: relative;
}
.op-footer-link-arrow {
  display: inline-block;
  opacity: 0; transform: translateX(-4px);
  transition: opacity .2s ease, transform .25s ease;
  font-size: 12px;
}
.op-footer-premium .op-footer-links a:hover {
  color: var(--op-text);
  transform: translateX(3px);
}
.op-footer-premium .op-footer-links a:hover .op-footer-link-arrow {
  opacity: 1; transform: translateX(0);
}

/* Bottom strip */
.op-footer-premium .op-footer-bottom {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0 4px;
  border-top: 1px solid var(--op-rd-glass-bd);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--op-muted);
}
.op-footer-premium .op-footer-bottom-left,
.op-footer-premium .op-footer-bottom-right {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.op-footer-premium .op-footer-bottom-right a {
  color: var(--op-muted); text-decoration: none;
  transition: color .2s ease;
}
.op-footer-premium .op-footer-bottom-right a:hover { color: var(--op-text); }

.op-footer-status {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 11px; border-radius: 999px;
  background: rgba(19,185,129,.10);
  border: 1px solid rgba(19,185,129,.25);
  color: #10b981 !important;
  font-weight: 700; font-size: 11.5px;
  text-decoration: none;
  transition: transform .2s ease;
}
.op-footer-status:hover { transform: translateY(-1px); }
.op-footer-status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(19,185,129,.18);
  animation: opRdStatusPulse 2s ease-in-out infinite;
}
@keyframes opRdStatusPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(19,185,129,.18); }
  50%      { box-shadow: 0 0 0 6px rgba(19,185,129,.04); }
}

/* Toggle caret on mobile */
.op-footer-premium .op-footer-toggle-caret {
  display: none;
  margin-left: auto;
  transition: transform .25s ease;
  font-size: 16px;
}
@media (max-width: 700px) {
  .op-footer-premium .op-footer-toggle { display: flex !important; align-items: center; }
  .op-footer-premium .op-footer-toggle-caret { display: inline-block; }
  .op-footer-premium .op-footer-toggle.is-open .op-footer-toggle-caret { transform: rotate(180deg); }
}

/* ── 3. Animation utilities (used by hero + section content) ─────────── */
@keyframes opRdFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(2deg); }
}
@keyframes opRdShimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes opRdSpinSlow {
  to { transform: rotate(360deg); }
}

/* Premium button — magnetic feel + shimmer sweep */
.op-btn-glow {
  position: relative; overflow: hidden;
  background: var(--op-rd-grad);
  background-size: 200% 200%;
  border: 0; color: #fff;
  box-shadow: 0 12px 30px rgba(37,99,235,.35);
  animation: opRdRibbonShift 12s ease-in-out infinite;
  transition: transform .25s cubic-bezier(.2,.9,.3,1), box-shadow .25s ease;
}
.op-btn-glow::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: opRdShimmer 3.2s ease-in-out infinite;
  pointer-events: none;
}
.op-btn-glow:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 44px rgba(37,99,235,.48);
}

/* Card tilt on hover (apply via [data-tilt]) */
[data-tilt] {
  transition: transform .35s cubic-bezier(.2,.9,.3,1), box-shadow .35s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
[data-tilt]:hover {
  transform: translateY(-6px) rotateX(2deg) rotateY(-2deg);
  box-shadow: var(--op-rd-shadow-lg);
}

/* Gradient border helper */
.op-grad-border {
  position: relative;
  border-radius: 22px;
  background:
    linear-gradient(var(--op-bg), var(--op-bg)) padding-box,
    var(--op-rd-grad) border-box;
  border: 1.5px solid transparent;
}
html[data-theme="dark"] .op-grad-border {
  background:
    linear-gradient(var(--op-bg), var(--op-bg)) padding-box,
    var(--op-rd-grad) border-box;
}

/* Reveal on scroll polish */
.op-reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.9,.3,1); }
.op-reveal.is-visible { opacity: 1; transform: none; }

/* Reduce motion respect */
@media (prefers-reduced-motion: reduce) {
  .op-footer-premium .op-orb-footer,
  .op-footer-premium .op-orb-footer-2,
  .op-footer-cta-ribbon,
  .op-footer-status-dot,
  .op-btn-glow,
  .op-btn-glow::before { animation: none !important; }
  [data-tilt]:hover { transform: translateY(-2px); }
}

/* ── 4. Premium hero — constellation + capability badges ─────────────── */
.op-hero-premium { position: relative; isolation: isolate; }
.op-hero-constellation {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
  opacity: .65; mix-blend-mode: normal;
}
html[data-theme="dark"] .op-hero-constellation { opacity: .85; }
.op-hero-premium .op-container { position: relative; z-index: 2; }

.op-con-pulse {
  filter: drop-shadow(0 0 6px rgba(37,99,235,.6));
  transform-origin: center;
  animation: opConPulse 3s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}
@keyframes opConPulse {
  0%, 100% { opacity: .55; r: 2; }
  50%      { opacity: 1;   r: 4; }
}

/* Capability badges — float around the 3D stage */
.op-stage { position: relative; }
.op-cap-badge {
  position: absolute; z-index: 10;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 14px 9px 9px;
  border-radius: 999px;
  background: var(--op-rd-glass);
  border: 1px solid var(--op-rd-glass-bd);
  backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 12px 30px rgba(15,23,42,.10), 0 2px 6px rgba(15,23,42,.06);
  transition: transform .35s cubic-bezier(.2,.9,.3,1), box-shadow .35s ease;
  cursor: default;
}
html[data-theme="dark"] .op-cap-badge {
  box-shadow: 0 12px 30px rgba(0,0,0,.36), 0 2px 6px rgba(0,0,0,.2);
}
.op-cap-badge:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 44px rgba(37,99,235,.22), 0 4px 10px rgba(15,23,42,.12);
}
.op-cap-icon {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  color: #fff;
  flex-shrink: 0;
}
.op-cap-icon-blue   { background: linear-gradient(135deg, #2563eb, #06b6d4); }
.op-cap-icon-cyan   { background: linear-gradient(135deg, #06b6d4, #10b981); }
.op-cap-icon-violet { background: linear-gradient(135deg, #7c3aed, #2563eb); }
.op-cap-icon-green  { background: linear-gradient(135deg, #10b981, #06b6d4); }
.op-cap-icon-pink   { background: linear-gradient(135deg, #e879f9, #7c3aed); }
.op-cap-text { display: flex; flex-direction: column; line-height: 1.15; }
.op-cap-label { font-size: 12.5px; font-weight: 800; color: var(--op-text); letter-spacing: -0.005em; }
.op-cap-meta  { font-size: 10.5px; font-weight: 600; color: var(--op-muted); }

/* Position each badge — float independently with staggered timing */
.op-cap-1 { top: -22px;  left: -50px;  animation: opRdFloat 7s ease-in-out infinite; }
.op-cap-2 { top: 28%;    right: -56px; animation: opRdFloat 6s ease-in-out infinite; animation-delay: .8s; }
.op-cap-3 { top: 60%;    left: -68px;  animation: opRdFloat 8s ease-in-out infinite; animation-delay: .4s; }
.op-cap-4 { bottom: 4%;  right: -32px; animation: opRdFloat 7.5s ease-in-out infinite; animation-delay: 1.2s; }
.op-cap-5 { bottom: -14px; left: 28%;  animation: opRdFloat 9s ease-in-out infinite; animation-delay: 1.6s; }

@media (max-width: 1080px) {
  /* Hide badges on tablet/mobile to keep the hero clean */
  .op-cap-badge { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .op-cap-badge, .op-con-pulse { animation: none !important; }
}

/* ── 5. Capabilities showcase section (premium illustrated cards) ────── */
.op-caps-showcase {
  position: relative;
  padding: 100px 20px 80px;
  overflow: hidden;
}
.op-caps-showcase::before {
  content: ''; position: absolute; left: 50%; top: 0;
  width: 1100px; height: 1100px; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(37,99,235,.08), transparent 60%);
  pointer-events: none;
}
.op-caps-showcase .op-caps-head {
  text-align: center; max-width: 720px; margin: 0 auto 56px;
  position: relative;
}
.op-caps-showcase h2 {
  margin: 14px 0 10px;
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 900; letter-spacing: -0.02em; line-height: 1.05;
  color: var(--op-text);
}
.op-caps-showcase .op-lead { margin: 0; font-size: 17px; }

.op-caps-grid {
  position: relative;
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px;
}
@media (max-width: 1080px) { .op-caps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 580px)  { .op-caps-grid { grid-template-columns: 1fr; } }

.op-cap-card {
  position: relative;
  padding: 28px 24px;
  border-radius: 22px;
  background: var(--op-rd-glass);
  border: 1px solid var(--op-rd-glass-bd);
  backdrop-filter: blur(20px) saturate(160%);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.9,.3,1), border-color .35s ease, box-shadow .35s ease;
}
.op-cap-card::before {
  content: ''; position: absolute; left: -40%; top: -60%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(37,99,235,.20), transparent 65%);
  filter: blur(20px);
  opacity: 0; transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}
.op-cap-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37,99,235,.35);
  box-shadow: var(--op-rd-shadow-lg);
}
.op-cap-card:hover::before { opacity: 1; transform: translate(20px, 20px); }
.op-cap-card-glyph {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 16px;
  margin-bottom: 18px;
  color: #fff;
  position: relative;
  box-shadow: 0 12px 24px rgba(37,99,235,.25);
}
.op-cap-card-glyph::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 18px;
  background: var(--op-rd-grad);
  opacity: .15;
  z-index: -1;
  filter: blur(8px);
}
.op-cap-card h3 {
  margin: 0 0 8px; font-size: 19px; font-weight: 900; letter-spacing: -0.01em;
  color: var(--op-text);
}
.op-cap-card p {
  margin: 0 0 16px; font-size: 13.5px; line-height: 1.55; color: var(--op-muted);
}
.op-cap-card-stats {
  display: flex; gap: 14px; padding-top: 14px;
  border-top: 1px dashed var(--op-rd-glass-bd);
}
.op-cap-card-stat {
  display: flex; flex-direction: column;
}
.op-cap-card-stat b {
  font-size: 18px; font-weight: 900;
  background: var(--op-rd-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.op-cap-card-stat span {
  font-size: 10.5px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--op-muted);
}

