@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap");

:root {
  --smallcontainer: 1520px;
  --content: 1520px;
  --rev-white: #ffffff;
  --rev-black: #0b0d12;
  --rev-green: #0d7c3f;
  --rev-green-2: #16a34a;
  --rev-green-soft: #e8f5ee;
  --rev-green-ultra: #f2faf5;
  --rev-ink: #0a1628;
  --rev-ink-2: #1e293b;
  --rev-ink-soft: #475569;
  --rev-muted: #64748b;
  --rev-line: #e2e8f0;
  --rev-line-2: #f1f5f9;
  --rev-bg: #fff;
  --rev-bg-cream: #faf7f2;
  --rev-bg-sage: #f2f6f1;
  --rev-forest: #0b2818;
  --rev-forest-2: #0e3520;
  --rev-amber: #d97706;
  --rev-red: #b91c1c;

  --shadow-sm: 0 2px 10px rgba(13, 124, 63, 0.05);
  --shadow: 0 18px 44px rgba(13, 124, 63, 0.08);
  --shadow-lg: 0 34px 70px rgba(13, 124, 63, 0.14);
  --shadow-green: 0 16px 34px rgba(13, 124, 63, 0.28);
  --shadow-green-lg: 0 22px 50px rgba(13, 124, 63, 0.36);

  --grad-green: linear-gradient(
    135deg,
    var(--rev-green) 0%,
    var(--rev-green-2) 100%
  );
  --grad-hero:
    radial-gradient(
      1200px 520px at 12% -10%,
      var(--rev-green-ultra) 0%,
      rgba(242, 250, 245, 0) 60%
    ),
    radial-gradient(
      900px 500px at 100% 0%,
      var(--rev-green-soft) 0%,
      rgba(232, 245, 238, 0) 55%
    ),
    linear-gradient(180deg, var(--rev-bg-sage) 0%, var(--rev-bg) 100%);
  --grad-dark:
    radial-gradient(
      900px 500px at 85% -10%,
      rgba(13, 124, 63, 0.2) 0%,
      rgba(13, 124, 63, 0) 55%
    ),
    linear-gradient(
      135deg,
      var(--rev-ink) 0%,
      var(--rev-ink-2) 55%,
      var(--rev-forest) 100%
    );

  --heading-font: "Plus Jakarta Sans", sans-serif;
  --pop: "Poppins", sans-serif;

  --rev-font-56: clamp(38px, 5vw, 56px);
  --rev-font-45: clamp(30px, 3.4vw, 45px);
  --rev-font-42: clamp(30px, 3.2vw, 42px);
  --rev-font-38: 38px;
  --rev-font-36: clamp(26px, 2.6vw, 36px);
  --rev-font-34: 34px;
  --rev-font-32: 32px;
  --rev-font-26: clamp(20px, 1.7vw, 26px);
  --rev-font-24: clamp(17px, 1.4vw, 20px);
  --rev-font-20: 20px;
  --rev-font-18: 17px;
  --rev-font-16: 16px;
  --rev-font-14: 14px;

  --radius: 18px;
  --radius-lg: 24px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --sp-section: 90px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.sq-product {
  font-family: var(--pop);
  color: var(--rev-ink);
  line-height: 1.7;
  font-size: var(--rev-font-16);
  background: var(--rev-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.sq-product *,
.sq-product *::before,
.sq-product *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.sq-container {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
}

.sq-product h1,
.sq-product h2,
.sq-product h3 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--rev-black);
}

.sq-product h1 {
  font-size: var(--rev-font-56);
}
.sq-product h2 {
  font-size: var(--rev-font-42);
  letter-spacing: -0.025em;
}
.sq-product h3 {
  font-size: var(--rev-font-26);
  letter-spacing: -0.02em;
}

.sq-product p {
  margin-bottom: var(--rev-font-20);
  color: var(--rev-muted);
}

.sq-product a {
  color: var(--rev-green-2);
  text-decoration: none;
  font-weight: 500;
  transition:
    color 0.2s var(--ease),
    opacity 0.2s var(--ease);
}

.sq-product a:hover {
  color: var(--rev-forest);
}

/* ---------- Eyebrow ---------- */
.sq-eyebrow {
  font-family: var(--heading-font);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  font-weight: 700;
  color: var(--rev-green);
  background: var(--rev-green-soft);
  padding: 6px 14px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(13, 124, 63, 0.15);
}

.sq-eyebrow::before {
  display: none;
}

/* ---------- Buttons (matches live softqubes.com .Solutions-btn / .viewbtn-all) ---------- */
.sq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 100px;
  border: 1px solid var(--rev-green);
  background: var(--rev-green-soft);
  color: var(--rev-green) !important;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  transition: all 0.2s var(--ease);
  text-decoration: none;
}

.sq-btn:hover {
  border-color: var(--rev-green);
  color: var(--rev-green) !important;
  background: var(--rev-green-ultra);
}

/* Secondary CTA: starts filled black, inverts to white on hover */
.sq-btn--ghost {
  background: linear-gradient(
    to right,
    var(--rev-white) 50%,
    var(--rev-black) 50%
  );
  background-size: 200% 100%;
  background-position: right bottom;
  color: var(--rev-white) !important;
  border-color: var(--rev-black);
}

.sq-btn--ghost:hover {
  background-position: left bottom;
  color: var(--rev-black) !important;
  border-color: var(--rev-black);
}

/* Primary Green CTA */
.sq-btn--primary {
  background: var(--grad-green);
  background-size: 200% auto;
  color: var(--rev-white) !important;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(13, 124, 63, 0.25);
}

.sq-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(13, 124, 63, 0.35);
  color: var(--rev-white) !important;
  border-color: transparent;
  background: var(--grad-green);
  background-size: 200% auto;
  background-position: right center;
}

/* ---------- Sections ---------- */
.sq-section {
  padding-top: var(--sp-section);
  padding-bottom: var(--sp-section);
}

.sq-section--cream {
  background: var(--rev-bg-cream);
  border-top: 1px solid var(--rev-line-2);
  border-bottom: 1px solid var(--rev-line-2);
}

.sq-section--grey {
  background: var(--rev-bg-sage);
  border-top: 1px solid var(--rev-line-2);
  border-bottom: 1px solid var(--rev-line-2);
}

.sq-section__head {
  max-width: 68ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: clamp(36px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sq-section__head p {
  font-size: 17px;
  margin-bottom: 0;
  margin-top: 12px;
}

/* ---------- Card grid ---------- */

/* Wrapper: holds the spinning border */
.sq-grid-glow {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: 2px;
  box-shadow: var(--shadow-lg);
}

@keyframes sq-grid-spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Large spinning conic-gradient on the wrapper */
.sq-grid-glow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    transparent 0%,
    transparent 70%,
    var(--rev-green-2) 90%,
    var(--rev-green) 100%
  );
  animation: sq-grid-spin 5s linear infinite;
  z-index: 0;
}

/* The actual grid sits cleanly inside */
.sq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1px;
  background: var(--rev-line-2);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.sq-card {
  position: relative;
  background: #ffffff;
  padding: 48px 40px;
  transition: background 0.4s var(--ease);
  z-index: 1;
}

/* Distinct background for the middle card */
.sq-card:nth-child(2) {
  background: var(--rev-bg-cream);
}

.sq-card:hover {
  background: var(--rev-green-ultra);
}

.sq-card h3 {
  transition: color 0.3s var(--ease);
  font-size: 20px;
  margin-bottom: 14px;
}
.sq-card:hover h3 {
  color: var(--rev-green-2);
}

/* Feature-card icon badge */
.sq-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--rev-green-soft);
  margin-bottom: 24px;
  transition: transform 0.4s var(--ease);
}

.sq-card:hover .sq-card__icon {
  transform: scale(1.05);
}

.sq-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--rev-green-2);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sq-card p {
  margin-bottom: 0;
  color: var(--rev-ink-soft);
  line-height: 1.6;
}

.sq-card ul {
  list-style: none;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px dashed var(--rev-line-2);
}

.sq-card li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--rev-ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

.sq-card li:last-child {
  margin-bottom: 0;
}

.sq-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    no-repeat center center;
  background-size: contain;
}

/* ---------- FAQ ---------- */
.sq-faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 840px;
  margin: 0 auto;
}

.sq-faq details {
  background: var(--rev-white);
  border: 1px solid var(--rev-line);
  border-radius: 16px;
  padding: 0 24px;
  margin-bottom: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.sq-faq details:first-child {
  /* Removed border-top override */
}

.sq-section--grey .sq-faq details {
  background: var(--rev-white);
}

.sq-faq details:hover {
  border-color: rgba(22, 163, 74, 0.3);
  box-shadow: 0 8px 24px -8px rgba(13, 124, 63, 0.08);
  transform: translateY(-2px);
}

.sq-faq details[open] {
  border-color: var(--rev-green-2);
  box-shadow: 0 12px 32px -12px rgba(13, 124, 63, 0.12);
}

.sq-faq summary {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 18px;
  color: var(--rev-black);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  transition: color 0.3s var(--ease);
}

.sq-faq summary:hover {
  color: var(--rev-green-2);
}

.sq-faq summary::-webkit-details-marker {
  display: none;
}

.sq-faq summary::after {
  content: "";
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E")
    center / contain no-repeat;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background-image 0.4s var(--ease);
}

.sq-faq details[open] summary::after {
  transform: rotate(45deg);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a1628' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.sq-faq p {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 24px;
  color: var(--rev-ink-soft);
  line-height: 1.7;
  font-size: 16px;
  animation: sq-faq-fade 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes sq-faq-fade {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Final CTA ---------- */
.sq-final {
  padding-top: var(--sp-section);
  padding-bottom: var(--sp-section);
  position: relative;
  /* background: var(--rev-bg-cream); */
}

.sq-final .sq-container {
  position: relative;
  background: #0a1628;
  padding: 100px 40px;
  border-radius: 40px;
  text-align: center;
  box-shadow:
    0 40px 80px -24px rgba(13, 124, 63, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  z-index: 1;
}

/* Grid pattern overlay */
.sq-final .sq-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(
    1000px 600px at 50% 50%,
    #000,
    transparent 80%
  );
  mask-image: radial-gradient(1000px 600px at 50% 50%, #000, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.sq-final h2 {
  position: relative;
  line-height: 130%;
  z-index: 2;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 30%, #a5e4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sq-final p {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.8);
  font-size: 19px;
  max-width: 62ch;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.sq-final .sq-btn {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #16a34a, #0d7c3f);
  color: #fff !important;
  border: none;
  padding: 20px 48px;
  font-size: 18px;
  border-radius: 99px;
  box-shadow:
    0 12px 32px rgba(22, 163, 74, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sq-final .sq-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 20px 48px rgba(22, 163, 74, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.sq-final .sq-btn--secondary,
.sq-owner .sq-btn--secondary,
.sq-logos .sq-btn--secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
  color: #fff;
}

.sq-final .sq-btn--secondary:hover,
.sq-owner .sq-btn--secondary:hover,
.sq-logos .sq-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

/* ---------- Motion ---------- */
.white-main {
  color: white !important;
}
.white-main:hover {
  color: white !important;
}
/* ---------- Hero (Ultra-Premium Light Theme UI) ---------- */
.sq-hero {
  position: relative;
  background: var(--rev-white);
  padding-top: clamp(120px, 10vw, 120px);
  padding-bottom: clamp(60px, 8vw, 100px);
  overflow: hidden;
}

.sq-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.sq-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: 0.6;
  -webkit-mask-image: radial-gradient(
    800px 600px at 50% 10%,
    #000 0%,
    transparent 80%
  );
  mask-image: radial-gradient(800px 600px at 50% 10%, #000 0%, transparent 80%);
}

.sq-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  mix-blend-mode: normal;
  opacity: 0.4;
}

.sq-orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(8, 175, 247, 0.4);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}

.sq-container {
  position: relative;
  z-index: 1;
}
.sq-container--narrow {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.sq-owner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  margin-bottom: 32px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.sq-owner-badge b {
  color: var(--rev-green);
  font-weight: 700;
}

.sq-h1-massive {
  font-size: clamp(36px, 5.5vw, 64px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #0f172a;
  font-weight: 800;
  margin-bottom: 24px;
}

.sq-lead-premium {
  font-size: clamp(18px, 2.5vw, 20px);
  color: #475569;
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.sq-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Pure CSS Mock UI Dashboard */

@keyframes dotBlink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.9);
  }
}

@keyframes dataFlow {
  0% {
    transform: translateX(-100%);
    opacity: 1;
  }
  100% {
    transform: translateX(200%);
    opacity: 0;
  }
}

@keyframes dataFlowVertical {
  0% {
    transform: translateY(-100%);
    opacity: 1;
  }
  100% {
    transform: translateY(200%);
    opacity: 0;
  }
}

/* ---------- Answer block ---------- */

/* ---------- Overview: dark feature band ---------- */

/* subtle blueprint grid */

/* glowing orb accents (two, symmetric) */

/* ===== Two-column overview: answer (left) + key-fact panel (right) ===== */

/* the answer text — a clean dark panel on the left */

/* right column: 2x2 grid of key-fact mini-cards */

/* animated angle for the traveling border light */
@property --sq-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

/* the moving glow: a bright arc riding a rotating conic gradient,
   shown only on the 1.5px border ring via mask-composite */

@keyframes sq-border-spin {
  to {
    --sq-angle: 360deg;
  }
}

/* stagger each card so the lights don't move in lockstep */

/* glowing top-edge accent line */

/* decorative quote badge, top-left, above the border */

/* keyword lead-in glows cyan */

/* ---------- Split (two-column image + text) ---------- */

/* ---------- Stats ---------- */
/* ---------- Stats: dark glassmorphism strip ---------- */
.sq-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  background: linear-gradient(135deg, #0a1a12 0%, #0f2b1a 50%, #0a1a12 100%);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  padding: 0;
}

/* subtle grid texture overlay */
.sq-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.sq-stat {
  flex: 1;
  padding: 48px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.4s var(--ease);
}

.sq-stat:last-child {
  border-right: none;
}

.sq-stat:hover {
  background: rgba(22, 163, 74, 0.08);
}

.sq-section--grey .sq-stat {
  background: transparent;
}

.sq-stat b {
  display: block;
  font-family: var(--heading-font);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 130%;
  background: linear-gradient(135deg, #4ade80, #16a34a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(74, 222, 128, 0.3));
}

.sq-stat span {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- Logos: Ultra-Premium Integrations Grid ---------- */

.sq-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
  padding: 100px 40px;
  border-radius: 40px;
  position: relative;
  background: #030811; /* Deep space dark */
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 40px 100px -20px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

/* The glowing 3D grid floor */
.sq-logos::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(600px) rotateX(60deg) translateY(100px);
  transform-origin: bottom center;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, transparent 60%);
  -webkit-mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    transparent 60%
  );
  pointer-events: none;
}

/* The pulsing central core */
.sq-logos::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(22, 163, 74, 0.15) 0%,
    rgba(22, 163, 74, 0.05) 30%,
    transparent 70%
  );
  pointer-events: none;
  animation: pulseCore 6s ease-in-out infinite alternate;
}

@keyframes pulseCore {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

/* Pill-shaped glassmorphism tags */
.sq-logo-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 32px 16px 20px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  color: #fff;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.sq-logo-box img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  padding: 6px;
  object-fit: contain;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Stunning Hover Effects */
.sq-logo-box:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(22, 163, 74, 0.5);
  transform: translateY(-8px) scale(1.05);
  box-shadow:
    0 24px 48px -12px rgba(22, 163, 74, 0.4),
    0 0 0 1px rgba(22, 163, 74, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.sq-logo-box:hover img {
  transform: scale(1.15);
}

/* Dim other cards when one is hovered */
/* .sq-logos:hover .sq-logo-box:not(:hover) {
  opacity: 0.4;
  transform: scale(0.95);
  filter: grayscale(60%);
} */

/* Stagger entrance / visual flow */
.sq-logo-box:nth-child(1) {
  animation-delay: 0s;
}
.sq-logo-box:nth-child(2) {
  animation-delay: -1.2s;
}
.sq-logo-box:nth-child(3) {
  animation-delay: -2.7s;
}
.sq-logo-box:nth-child(4) {
  animation-delay: -0.8s;
}
.sq-logo-box:nth-child(5) {
  animation-delay: -3.5s;
}
.sq-logo-box:nth-child(6) {
  animation-delay: -1.9s;
}
.sq-logo-box:nth-child(7) {
  animation-delay: -0.4s;
}
.sq-logo-box:nth-child(8) {
  animation-delay: -2.2s;
}

/* ============================================================
   Industry / capability tiles — clean light grid
   ============================================================ */

@keyframes chipBorderSpin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  15% {
    opacity: 1;
  }
  20% {
    transform: translate(-50%, -50%) rotate(360deg);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
    opacity: 0;
  }
}

/* icon holder */

/* ---- per-chip icons (data-icon) ---- */
.sq-chip[data-icon="finance"] {
  --chip-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23068cc7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='1' x2='12' y2='23'/%3E%3Cpath d='M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6'/%3E%3C/svg%3E");
}
.sq-chip[data-icon="healthcare"] {
  --chip-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23068cc7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 12h-4l-3 9L9 3l-3 9H2'/%3E%3C/svg%3E");
}
.sq-chip[data-icon="manufacturing"] {
  --chip-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23068cc7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 20h20V9l-6 4V9l-6 4V4L2 8Z'/%3E%3C/svg%3E");
}
.sq-chip[data-icon="retail"] {
  --chip-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23068cc7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.7 13.4a2 2 0 0 0 2 1.6h9.7a2 2 0 0 0 2-1.6L23 6H6'/%3E%3C/svg%3E");
}
.sq-chip[data-icon="hospitality"] {
  --chip-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23068cc7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 20h20M4 20V9a8 8 0 0 1 16 0v11M9 20v-4a3 3 0 0 1 6 0v4'/%3E%3C/svg%3E");
}
.sq-chip[data-icon="logistics"] {
  --chip-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23068cc7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='1' y='3' width='15' height='13'/%3E%3Cpath d='M16 8h4l3 3v5h-7z'/%3E%3Ccircle cx='5.5' cy='18.5' r='2.5'/%3E%3Ccircle cx='18.5' cy='18.5' r='2.5'/%3E%3C/svg%3E");
}

.sq-chip[data-icon="shield"] {
  --chip-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23068cc7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E");
}
.sq-chip[data-icon="lock"] {
  --chip-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23068cc7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E");
}
.sq-chip[data-icon="check"] {
  --chip-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23068cc7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
}
.sq-chip[data-icon="uptime"] {
  --chip-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23068cc7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E");
}

.sq-chip[data-icon="plug"] {
  --chip-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23068cc7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 2v6M15 2v6M6 8h12v3a6 6 0 0 1-12 0zM12 17v5'/%3E%3C/svg%3E");
}
.sq-chip[data-icon="link"] {
  --chip-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23068cc7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 13a5 5 0 0 0 7 0l3-3a5 5 0 0 0-7-7l-1 1'/%3E%3Cpath d='M14 11a5 5 0 0 0-7 0l-3 3a5 5 0 0 0 7 7l1-1'/%3E%3C/svg%3E");
}
.sq-chip[data-icon="globe"] {
  --chip-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23068cc7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='2' y1='12' x2='22' y2='12'/%3E%3Cpath d='M12 2a15 15 0 0 1 0 20 15 15 0 0 1 0-20z'/%3E%3C/svg%3E");
}
.sq-chip[data-icon="calendar"] {
  --chip-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23068cc7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
}

/* ---------- Owner (dark card) ---------- */
.sq-owner {
  position: relative;
  /* background: transparent; */
  padding: 60px 0;
}

.sq-owner .sq-container {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--rev-forest) 0%,
    var(--rev-forest-2) 100%
  );
  color: var(--rev-white);
  padding: 64px 80px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 64px -12px rgba(11, 40, 24, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sq-owner .sq-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(
    800px 600px at 85% 10%,
    #000,
    transparent 70%
  );
  mask-image: radial-gradient(800px 600px at 85% 10%, #000, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.sq-owner .sq-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    800px 600px at 85% -10%,
    rgba(13, 124, 63, 0.5) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
}

/* Ensure text is above background pseudo elements */
.sq-owner .sq-container > * {
  position: relative;
  z-index: 2;
}

.sq-owner h2 {
  color: var(--rev-white);
  margin-bottom: 8px;
}

.sq-owner p {
  color: #b8c2d0;
  max-width: 72ch;
  font-size: 17px;
}

.sq-owner .sq-eyebrow {
  color: var(--rev-green);
}
.sq-owner .sq-eyebrow::before {
  background: linear-gradient(90deg, var(--rev-green), transparent);
}

.sq-owner a:not(.sq-btn) {
  color: var(--rev-green);
}
.sq-owner a:not(.sq-btn):hover {
  color: #a5e4ff;
}

/* Button on dark background: white outline, inverts to solid white on hover */
.sq-owner .sq-btn {
  background: transparent;
  color: var(--rev-white) !important;
  border-color: var(--rev-white);
}

.sq-owner .sq-btn:hover {
  background: var(--rev-white);
  color: var(--rev-black) !important;
  border-color: var(--rev-white);
}

/* ---------- Sibling products ---------- */
.sq-sib {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.sq-sib a {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 24px;
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 4px 16px -8px rgba(0, 0, 0, 0.05),
    inset 0 2px 4px rgba(255, 255, 255, 0.8);
  font-weight: 400;
  overflow: hidden;
  z-index: 1;
}

.sq-sib a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(
    800px circle at top right,
    rgba(22, 163, 74, 0.05) 0%,
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  z-index: -1;
}

/* Elegant crisp SVG Arrow */
.sq-sib a::after {
  content: "";
  position: absolute;
  bottom: 36px;
  right: 32px;
  width: 24px;
  height: 24px;
  background-color: var(--rev-green-2);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 5l7 7-7 7'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 5l7 7-7 7'/%3E%3C/svg%3E")
    center / contain no-repeat;
  opacity: 0;
  transform: translateX(-16px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sq-sib a:hover {
  border-color: rgba(22, 163, 74, 0.25);
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 24px 48px -12px rgba(13, 124, 63, 0.12),
    0 8px 16px -4px rgba(13, 124, 63, 0.04),
    inset 0 0 0 1px rgba(255, 255, 255, 1);
}

.sq-sib a:hover::before {
  opacity: 1;
}

.sq-sib a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.sq-sib h3 {
  color: var(--rev-ink);
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.sq-sib p {
  margin-bottom: 0;
  color: var(--rev-ink-soft);
  line-height: 1.6;
  font-size: 15px;
  padding-right: 32px; /* Leave room for arrow to slide in */
}

/* ---------- Owner Section ---------- */
.sq-owner {
  padding: 120px 0;
  color: var(--rev-white);
  position: relative;
  overflow: hidden;
}

/* ---------- Responsive ---------- */

/* =========================================
   NEW REVEVOLVE MINIMALIST OVERVIEW
========================================= */
.sq-overview-minimal {
  padding: 120px 0;
}

.sq-overview-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sq-overview-split__text .sq-eyebrow {
  margin-bottom: 24px;
  display: inline-block;
}

.sq-overview-split__text h2 {
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--rev-ink);
  margin-bottom: 32px;
}

.sq-overview-split__text p {
  font-size: 20px;
  line-height: 1.7;
  color: var(--rev-ink-soft);
  margin-bottom: 24px;
}

.sq-overview-split__text p strong {
  color: var(--rev-ink);
  font-weight: 600;
}

.sq-overview-split__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--rev-bg-cream);
  border: 1px solid var(--rev-line-2);
  border-radius: 12px;
  overflow: hidden;
}

.sq-minimal-stat {
  padding: 48px 32px;
  background: var(--rev-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-right: 1px solid var(--rev-line-2);
  border-bottom: 1px solid var(--rev-line-2);
}

/* Remove right borders for the 2nd column */
.sq-minimal-stat:nth-child(2n) {
  border-right: none;
}
/* Remove bottom borders for the last row */
.sq-minimal-stat:nth-child(n + 3) {
  border-bottom: none;
}

.sq-minimal-stat-val {
  font-size: 42px;
  font-weight: 700;
  color: var(--rev-green);
  font-family: var(--rev-font-heading);
  letter-spacing: -1px;
  margin-bottom: 8px;
  line-height: 1;
}

.sq-minimal-stat-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--rev-muted);
  font-weight: 600;
}

.page-template-product-revevolve-tmpl header {
  background-color: #000;
}
