:root{
  /* Phone screen overlay positioning (tweak to your image) */
  --screen-top:   8.6%;
  --screen-left:  23.2%;
  --screen-w:     53.6%;
  --screen-h:     73.2%;

  /* Logo size & offsets (you mainly change these) */
  --logo-size: 14%;     /* smaller logo */
  --logo-offset-y: 2%;  /* + down, - up */
  --logo-offset-x: 0%;  /* + right, - left */

  /* Neon glow hues */
  --c1:#28b5ff; --c2:#7a5cff; --c3:#ff22bb;
}

/* Hero wrapper */
.hero{
  position:relative;
  min-height: clamp(560px, 88vh, 960px);
  background:#000;
  display:grid;
  place-items:center;
  overflow:hidden;
}

/* Background phone image */
.hero-bg{
  width:min(1200px, 94vw);
  height:auto;
  display:block;
}

/* Overlay that matches the phone's display area */
.screen{
  position:absolute;
  top: var(--screen-top);
  left: var(--screen-left);
  width: var(--screen-w);
  height: var(--screen-h);
  pointer-events:none;
  z-index: 2;

  /* keep glow inside rounded screen */
  clip-path: inset(0 round 28px);
  -webkit-mask-image: radial-gradient(160% 160% at 50% 50%, #000 62%, transparent 82%);
          mask-image: radial-gradient(160% 160% at 50% 50%, #000 62%, transparent 82%);
}

/* Logo (centered inside .screen with glow) */
.hero-logo{
  position:absolute;
  top:50%; left:50%;
  transform: translate(calc(-50% + var(--logo-offset-x)),
                       calc(-50% + var(--logo-offset-y)));
  width: var(--logo-size);
  height:auto;
  display:block;
  z-index:3;
  mix-blend-mode: screen;
  filter:
    drop-shadow(0 0 10px var(--c2))
    drop-shadow(0 0 28px var(--c3));
  animation: logoGlow 4s ease-in-out infinite;
}

/* In case any theme rule overrides width, force it */
.hero .screen > .hero-logo{
  width: var(--logo-size) !important;
}

@keyframes logoGlow{
  0%,100%{
    filter:
      drop-shadow(0 0 8px var(--c2))
      drop-shadow(0 0 24px var(--c3));
  }
  50%{
    filter:
      drop-shadow(0 0 14px var(--c1))
      drop-shadow(0 0 48px var(--c2));
  }
}

/* Mobile tweaks (adjust if needed) */
@media (max-width: 900px){
  :root{
    --screen-top:  9.2%;
    --screen-left: 23.8%;
    --screen-w:    53.0%;
    --screen-h:    73.0%;
    --logo-size:   18%;
    --logo-offset-y: 3%;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .hero-logo{ animation:none }
}
/* Home Text Gradient Effect */
/* === Use Case Card Styling === */
.usecase-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 24px;
  width: 320px;
  color: #fff;
  font-family: "Inter", sans-serif;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.usecase-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 40px rgba(126, 0, 255, 0.4);
}

/* === Play Icon === */
.play-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
}

/* === Title & Description === */
.usecase-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 70px;
  margin-bottom: 8px;
}

.usecase-description {
  font-size: 0.95rem;
  color: #aaa;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* === Tags === */
.usecase-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.usecase-tags-centered {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}


.tag {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.85rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* === Carousel Spacing (for Salient / WPBakery) === */
.nectar-flickity .flickity-slider > * {
  padding: 0 2px; /* space between slides (12px per side = 24px total) */
}

.vc_carousel-slideline-inner > * {
  padding: 0 2px; /* WPBakery carousel spacing */
}

/* === Fallback class (optional, if you add "usecase-slide" manually) === */
.usecase-slide {
  padding: 0 2px !important;
}

/* === Make cards scale perfectly inside the carousel === */
.usecase-card {
  width: 100%;
	padding-top: 10px;
}

/* === Fix spacing for use case cards === */
.usecase-card img {
  width: 45px !important;
  height: auto !important;
  display: block;
  margin: 0 auto 0px auto !important;
  object-fit: contain;
}

.usecase-card > *:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.usecase-card {
  padding-top: 5px !important;
}

/* === Hero Layout === */
.finitless-hero {
  text-align: center;
  padding: 20px 20px 20px;
  color: #fff;
  font-family: "Inter", sans-serif;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 5.5rem); /* mobile → desktop */
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.1em;
}

.hero-subtitle {
  color: #cfcfcf;
  font-size: clamp(1rem, 2vw, 1.25rem); /* mobile → desktop */
  max-width: 780px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* === Buttons === */
.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 1.4rem;
  border-radius: 12px;
  text-decoration: none !important;
  transition: all 0.25s ease;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  line-height: 1.2;
}

/* Primary Button */
.hero-btn.primary {
  background: linear-gradient(90deg, var(--c1), var(--c2));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-btn.primary:hover {
  background: linear-gradient(30deg, var(--c1), var(--c2));
  color: #fff;
  box-shadow: 0 0 20px rgba(126, 0, 255, 0.5);
}

/* Secondary Button */
.hero-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-btn.secondary:hover {
  background: linear-gradient(90deg, var(--c2), var(--c3));
  box-shadow: 0 0 20px rgba(255, 34, 187, 0.4);
}

/* Gradient Animated Text */
.gradient-text {
  background: linear-gradient(90deg, var(--c1), var(--c2), var(--c3));
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 4s ease-in-out infinite;
  display: inline-block;
}

.gradient-text {
  background: linear-gradient(90deg, var(--c1), var(--c2), var(--c3));
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 4s ease-in-out infinite;
  display: inline-block;
}

.gradient-text-200 {
  background: linear-gradient(90deg, var(--c1), var(--c2), var(--c3));
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 4s ease-in-out infinite;
  display: inline-block;
  font-weight: 200;
  letter-spacing: 0.2px;
}

h2.no-break {
  white-space: nowrap;
}

/* First Vertical Line */
.finitless-line-wrapper {
  position: relative;
  height: 200px; /* or 100%, depending on layout */
  display: flex;
  justify-content: center; /* optional: center horizontally */
}

.finitless-line {
  width: 1px;
  height: 150%;
  background: linear-gradient(to bottom, #00C6FF, #7D2AE8, #FF0080);
  background-size: 100% 200%;
  animation: finitlessLineMove 0.4s ease-in-out forwards;
  border-radius: 2px;
}

@keyframes finitlessLineMove {
  0% {
    background-position: 0 -100%;
    opacity: 0;
  }
  100% {
    background-position: 0 0%;
    opacity: 1;
  }
}


@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.finitless-line-horizontal-wrapper {
  position: relative;
  width: 100%;
  height: 2px; /* thin line height */
  display: flex;
  align-items: center;
}

.finitless-line-horizontal {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #00C6FF, #7D2AE8, #FF0080);
  background-size: 200% 100%;
  animation: finitlessLineHorizontalMove 0.4s ease-in-out forwards;
  border-radius: 2px;
}

@keyframes finitlessLineHorizontalMove {
  0% {
    background-position: -100% 0;
    opacity: 0;
  }
  100% {
    background-position: 0 0;
    opacity: 1;
  }
}

/* Line Vertical 2nd */
.finitless-line-vertical {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 253px; 
  background: linear-gradient(to bottom, #00C6FF, #7D2AE8, #FF0080);
  background-size: 100% 200%;
  animation: finitlessLineVerticalMove 0.6s ease-in-out forwards;
  box-shadow: 0 0 10px rgba(125, 42, 232, 0.5);
  border-radius: 2px;
  z-index: 2; /* ensures it shows above background */
}

@keyframes finitlessLineVerticalMove {
  0% {
    background-position: 0 -100%;
    opacity: 0;
  }
  100% {
    background-position: 0 0%;
    opacity: 1;
  }
}

/* ===========================
   RESPONSIVE: HIDE LINES BELOW 1024PX
=========================== */
@media screen and (max-width: 1024px) {
  .finitless-line,
  .finitless-line-wrapper,
  .finitless-line-horizontal,
  .finitless-line-horizontal-wrapper,
  .finitless-line-vertical {
    display: none !important;
  }
}

/* =======================================
   FINITLESS INTEGRATIONS SLIDER (2 ROWS)
======================================= */

:root {
  --fi-bg: #000000; /* pure black background */
  --fi-grad: linear-gradient(90deg, #00C6FF, #7D2AE8, #FF0080);
  --slide-w: 180px;  /* smaller tile width */
  --logo-w: 98px;    /* smaller logo size (≈70%) */
  --count: 10;       /* number of logos per row */
  --speed: 40s;      /* scroll duration per loop */
}

.finitless-integrations {
  background: var(--fi-bg);
  overflow: hidden;
  padding: 12px 0;
}

.fi-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.fi-track {
  display: flex;
  gap: 0;
  width: calc(var(--slide-w) * var(--count) * 2);
  animation: fi-scroll var(--speed) linear infinite;
}

.fi-track.reverse {
  animation-direction: reverse;
}

.fi-slide {
  flex: 0 0 var(--slide-w);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.fi-slide img {
  width: var(--logo-w);
  height: auto;
  opacity: 0.6;
  transition: all 0.25s ease-in-out;
  filter: drop-shadow(0 0 0 rgba(125, 42, 232, 0));
}

.fi-slide:hover img {
  opacity: 1;
  filter: drop-shadow(0 0 16px rgba(125, 42, 232, 0.55));
}

/* pause animation on hover */
.fi-slider:hover .fi-track {
  animation-play-state: paused;
}

/* scroll animation */
@keyframes fi-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--slide-w) * var(--count)));
  }
}

/* second row spacing */
.second-row {
  margin-top: 10px;
}

/* Title removed, but keep spacing logic for uniformity */
.integrations-title {
  display: none;
}

/* =======================
   RESPONSIVE ADJUSTMENTS
======================= */
@media (max-width: 1400px) {
  :root {
    --slide-w: 160px;
    --logo-w: 88px;
    --speed: 36s;
  }
}

@media (max-width: 1024px) {
  :root {
    --slide-w: 140px;
    --logo-w: 76px;
    --speed: 32s;
  }
}

@media (max-width: 768px) {
  :root {
    --slide-w: 120px;
    --logo-w: 64px;
    --speed: 26s;
  }
}

@media (max-width: 480px) {
  :root {
    --slide-w: 100px;
    --logo-w: 54px;
    --speed: 22s;
  }

  .second-row {
    margin-top: 8px;
  }
}

/* hide gradient connector lines on mobile if present elsewhere */
@media (max-width: 1024px) {
  .finitless-line,
  .finitless-line-wrapper,
  .finitless-line-horizontal,
  .finitless-line-horizontal-wrapper,
  .finitless-line-vertical {
    display: none !important;
  }
}

/* Squares of Header Block */
.before h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cfcfcf;
  font-weight: 400;
  line-height: 1.6;
  margin: 12px 0;
}

.before .icon {
  flex-shrink: 0;
  opacity: 0.85;
  transition: transform 0.3s ease;
}

.before h4:hover .icon {
  transform: scale(1.15);
}

.after h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.6;
  margin: 12px 0;
}

.after .icon {
  flex-shrink: 0;
  opacity: 0.9;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 6px rgba(138, 180, 255, 0.5));
}

.after h4:hover .icon {
  transform: scale(1.15);
  filter: drop-shadow(0 0 12px rgba(138, 180, 255, 0.8));
}

/* ===============================
   FINITLESS WAITLIST POPUP ONLY
   =============================== */
#finitless-modal {
  all: revert;
  position: relative;
  z-index: 9999;
  font-family: 'Inter','Jost',sans-serif;
}

/* Join Waitlist Button — matches your site */
#finitless-modal .finitless-open-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-weight: 600;
  font-size: 24px;
  padding: 12px 28px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 6px rgba(255,255,255,0.05);
}
#finitless-modal .finitless-open-btn:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}

/* Popup Container */
#finitless-modal .finitless-popup {
  display: none;
  position: fixed;
  inset: 0;
  justify-content: center;
  align-items: center;
}
#finitless-modal .finitless-popup.active {
  display: flex;
}

/* Overlay Blur */
#finitless-modal .finitless-overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(12px);
  background: rgba(0,0,0,0.65);
}

#finitless-modal .finitless-popup { display: none; position: fixed; inset: 0; }
#finitless-modal .finitless-popup.active { display: flex; }

/* Popup Content */
#finitless-modal .finitless-content {
  position: relative;
  z-index: 2;
  background: rgba(20,20,25,0.9);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  box-shadow: 0 0 30px rgba(0,255,255,0.25);
  max-width: 520px;
  width: 90%;
  padding: 40px 30px;
  color: #fff;
  animation: finitlessFadeIn 0.35s ease;
}

/* Close Button */
#finitless-modal .finitless-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  color: #00ffff;
  background: none;
  border: none;
  cursor: pointer;
}

/* Fade Animation */
@keyframes finitlessFadeIn {
  from {opacity: 0; transform: translateY(-10px);}
  to {opacity: 1; transform: translateY(0);}
}

.usecase-btn {
  display: inline-block;
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 22px;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
}
.usecase-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}
.finitless-inline-glow {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #bfbfbf;
  white-space: nowrap; /* ✅ keeps everything in one line */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.finitless-inline-glow span {
  display: inline !important; /* ✅ forces inline text */
  vertical-align: middle;
}

.dot-glow {
  color: #00B7FF;
  text-shadow:
    0 0 5px #00B7FF,
    0 0 10px #00B7FF,
    0 0 20px rgba(0,183,255,0.9);
  animation: finitlessDotPulse 2.5s ease-in-out infinite;
  margin-right: 6px;
}

.divider {
  color: rgba(255, 255, 255, 0.2);
  margin: 0 8px;
}

@keyframes finitlessDotPulse {
  0%, 100% {
    text-shadow:
      0 0 5px #00B7FF,
      0 0 10px #00B7FF,
      0 0 20px rgba(0,183,255,0.9);
  }
  50% {
    text-shadow:
      0 0 8px #00B7FF,
      0 0 16px #00B7FF,
      0 0 30px rgba(0,183,255,1);
  }
}

.finitless-reality-badge {
  display: inline-flex;
  align-items: left;
  gap: 8px;
  background: rgba(255, 0, 0, 0.05);
  border: 1px solid rgba(255, 0, 0, 0.25);
  border-radius: 50px;
  padding: 10px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ff3b45;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.15);
}

.finitless-reality-badge .icon {
  font-size: 18px;
  display: flex;
  align-items: left;
  justify-content: left;
}

.finitless-reality-badge:hover {
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.3), inset 0 0 8px rgba(255, 0, 0, 0.1);
  transform: translateY(-2px);
}
.secondary-title-red {
  color: #fff;
  line-height: 1;
  margin: 0 auto;
  padding: 10px 0;
}

.secondary-title-red .red-gradient {
  background: linear-gradient(90deg, #ff3b45, #ff5f5f, #ff8a8a);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  animation: redGradientMove 4s ease-in-out infinite;
}

/* Optional smooth motion for the gradient */
@keyframes redGradientMove {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
/* === Blue/Purple Metric Card === */
.fin-stat-blue{
  display:flex; justify-content:center; align-items:center;
  padding:48px 20px;
}

.fin-card-blue{
  position:relative;
  width:min(820px,92vw);
  padding:110px 24px 120px;
  border-radius:22px;
  background: radial-gradient(circle at 20% 30%, #00394f 0%, #0b1344 45%, #240047 100%);
  border:1px solid rgba(255,255,255,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.04);
  text-align:center;
  overflow:hidden;
  isolation:isolate;
}
.fin-card-blue:before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(150deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 35% 65%, rgba(255,255,255,0.04) 100%);
  pointer-events:none; mix-blend-mode:overlay; opacity:.25;
}

/* Number + % with animated gradient fill */
.fin-percent-blue{
  position:relative; display:inline-flex; align-items:baseline; gap:.1em;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight:800; line-height:1;
  background:linear-gradient(90deg, #00B7FF 0%, #7A2EFF 100%);
  background-size:200%;
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent; color:transparent;
  animation:gradientShiftBlue 4s ease-in-out infinite;
  filter: drop-shadow(0 2px 0 rgba(0,0,0,.35));
}
.fin-value-blue{ font-size:clamp(56px,12vw,120px); }
.fin-symbol-blue{ font-size:clamp(36px,6vw,64px); opacity:.95; }

.fin-caption-blue{
  margin:18px auto 0;
  font-family:inherit;
  font-size:clamp(16px,2.4vw,22px);
  color:rgba(255,255,255,0.85);
}

/* Glow when the count finishes (section adds .hit) */
.fin-card-blue.hit .fin-percent-blue{
  animation: finGlowBlue 1200ms ease-out 1, gradientShiftBlue 4s ease-in-out infinite;
  text-shadow: 0 0 16px rgba(0,183,255,0.55), 0 0 38px rgba(122,46,255,0.45);
}

/* Burst ring */
.fin-burst-blue{
  position:absolute; left:50%; top:55%;
  width:12px; height:12px; border-radius:50%;
  transform:translate(-50%,-50%) scale(0.001);
  pointer-events:none; opacity:0;
  background: radial-gradient(circle, rgba(0,183,255,0.9) 0%, rgba(122,46,255,0.5) 45%, rgba(0,0,0,0) 70%);
}
.fin-card-blue.hit .fin-burst-blue{
  animation: finBurstBlue 900ms ease-out forwards;
}

/* Keyframes */
@keyframes gradientShiftBlue{
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}
@keyframes finGlowBlue{
  0%{text-shadow:0 0 0 rgba(0,183,255,0)}
  40%{text-shadow:0 0 20px rgba(0,183,255,.8),0 0 45px rgba(122,46,255,.6)}
  100%{text-shadow:0 0 10px rgba(0,183,255,.6),0 0 30px rgba(122,46,255,.5)}
}
@keyframes finBurstBlue{
  0%{opacity:0; transform:translate(-50%,-50%) scale(0.001)}
  25%{opacity:.45; transform:translate(-50%,-50%) scale(1.5)}
  60%{opacity:.25; transform:translate(-50%,-50%) scale(3.2)}
  100%{opacity:0; transform:translate(-50%,-50%) scale(4.2)}
}

/* Accessibility */
@media (prefers-reduced-motion: reduce){
  .fin-card-blue.hit .fin-percent-blue,
  .fin-card-blue.hit .fin-burst-blue{ animation:none!important }
}
.breakthrough-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #00B7FF;
  background: rgba(0, 183, 255, 0.05);
  border: 1.5px solid rgba(0, 183, 255, 0.4);
  border-radius: 9999px;
  padding: 10px 28px;
  box-shadow: 0 0 12px rgba(0, 183, 255, 0.25);
  text-align: center;
  transition: all 0.3s ease;
  width: fit-content;
  user-select: none;
}

.breakthrough-tag::before {
  content: "⚡";
  font-size: 22px;
  color: #00B7FF;
}

.breakthrough-tag:hover {
  transform: scale(1.02);
  box-shadow: 0 0 18px rgba(0, 183, 255, 0.45);
}
/* === FINITLESS FOOTER OVERRIDE === */
footer,
.site-footer,
#footer,
#colophon {
  background-color: #000 !important;
  color: #fff !important;
}

/* Optional: make links inside footer white too */
footer a,
.site-footer a,
#footer a {
  color: #fff !important;
  text-decoration: none;
}

footer a:hover,
.site-footer a:hover,
#footer a:hover {
  color: #000 !important; /* subtle accent hover */
}
