@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;
  --black: #0b0d12;
  --ink: #141925;
  --white: #ffffff;
  --blue: #08aff7;
  --blue-deep: #068cc7;
  --blue-dark: #056a99;
  --blue-tint: #e6f6fe;
  --blue-tint-2: #f2fbff;
  --grey: #5a6472;
  --grey-soft: #7b8494;
  --bg-grey: #f4f8fc;
  --bg-grey-2: #eef4fa;
  --surface: #ffffff;
  --border: #e2ebf5;
  --border-soft: #eef3f9;

  --shadow-sm: 0 2px 10px rgba(11, 30, 55, 0.05);
  --shadow: 0 18px 44px rgba(9, 32, 60, 0.08);
  --shadow-lg: 0 34px 70px rgba(9, 32, 60, 0.14);
  --shadow-blue: 0 16px 34px rgba(8, 175, 247, 0.28);
  --shadow-blue-lg: 0 22px 50px rgba(8, 175, 247, 0.36);

  --grad-blue: linear-gradient(135deg, #0b6195 0%, var(--blue-dark) 100%);
  --grad-hero:
    radial-gradient(
      1200px 520px at 12% -10%,
      #dcf1fd 0%,
      rgba(220, 241, 253, 0) 60%
    ),
    radial-gradient(
      900px 500px at 100% 0%,
      #eaf3fb 0%,
      rgba(234, 243, 251, 0) 55%
    ),
    linear-gradient(180deg, #f4f9fd 0%, #ffffff 100%);
  --grad-dark:
    radial-gradient(
      900px 500px at 85% -10%,
      rgba(8, 175, 247, 0.2) 0%,
      rgba(8, 175, 247, 0) 55%
    ),
    linear-gradient(135deg, #0a0d14 0%, #0f1622 55%, #111a29 100%);

  --heading-font: "Plus Jakarta Sans", sans-serif;
  --pop: "Poppins", sans-serif;

  --font-56: clamp(38px, 5vw, 56px);
  --font-45: clamp(30px, 3.4vw, 45px);
  --font-42: clamp(30px, 3.2vw, 42px);
  --font-38: 38px;
  --font-36: clamp(26px, 2.6vw, 36px);
  --font-34: 34px;
  --font-32: 32px;
  --font-26: clamp(20px, 1.7vw, 26px);
  --font-24: clamp(17px, 1.4vw, 20px);
  --font-20: 20px;
  --font-18: 17px;
  --font-16: 16px;
  --font-14: 14px;

  --radius: 18px;
  --radius-lg: 24px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --sp-section: clamp(64px, 7vw, 108px);
  --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(--ink);
  line-height: 1.7;
  font-size: var(--font-16);
  background: var(--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(--black);
}

.sq-product h1 {
  font-size: var(--font-56);
}
.sq-product h2 {
  font-size: var(--font-42);
  letter-spacing: -0.025em;
}
.sq-product h3 {
  font-size: var(--font-26);
  letter-spacing: -0.02em;
}

.sq-product p {
  margin-bottom: var(--font-20);
  color: var(--grey);
}

.sq-product a {
  color: var(--blue-deep);
  text-decoration: none;
  font-weight: 500;
  transition:
    color 0.2s var(--ease),
    opacity 0.2s var(--ease);
}

.sq-product a:hover {
  color: var(--blue-dark);
}

/* ---------- Eyebrow ---------- */
.sq-eyebrow {
  font-family: var(--heading-font);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-deep);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.sq-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-blue);
  display: inline-block;
}

/* ---------- Buttons (matches live softqubes.com .Solutions-btn / .viewbtn-all) ---------- */
.sq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 102px;
  border: 2px solid var(--black);

  /* Sweep to Right Effect */
  background: linear-gradient(to right, var(--black) 50%, var(--white) 50%);
  background-size: 200% 100%;
  background-position: right bottom;

  color: var(--black) !important;
  font-family: var(--futura-pt), var(--heading-font);
  font-size: var(--font-24);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 14px 34px;
  transition:
    background-position 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    color 0.4s ease,
    border-color 0.4s ease;
}

.sq-btn:hover {
  background-position: left bottom;
  color: var(--white) !important;
  border-color: var(--black);
}

/* Secondary CTA: starts filled black, inverts to white on hover */
.sq-btn--ghost {
  background: linear-gradient(to right, var(--white) 50%, var(--black) 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  color: var(--white) !important;
  border-color: var(--black);
}

.sq-btn--ghost:hover {
  background-position: left bottom;
  color: var(--black) !important;
  border-color: var(--black);
}

.sq-btn--blue {
  background: linear-gradient(to right, var(--white) 50%, #0b6195 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  color: var(--white) !important;
  border-color: #0b6195;
}

.sq-btn--blue:hover {
  background-position: left bottom;
  color: #0b6195 !important;
  border-color: #0b6195;
}

/* ---------- Sections ---------- */
.sq-section {
  padding-top: var(--sp-section);
  padding-bottom: var(--sp-section);
}

.sq-section--grey {
  background: #f8fafc;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.sq-section__head {
  max-width: 68ch;
  margin-bottom: clamp(36px, 4vw, 56px);
}

.sq-section__head p {
  font-size: 17px;
  margin-bottom: 0;
}

/* ---------- Card grid ---------- */
.sq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 26px;
}

.sq-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.02),
    0 8px 16px rgba(0, 0, 0, 0.03);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.sq-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.04),
    0 16px 32px rgba(0, 0, 0, 0.06);
}

.sq-card h3 {
  transition: color 0.3s var(--ease);
}
.sq-card:hover h3 {
  color: var(--blue-deep);
}

/* Feature-card icon badge */
.sq-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #f0f9ff;
  border: 1px solid rgba(8, 175, 247, 0.1);
  margin-bottom: 24px;
}

.sq-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue-deep);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sq-card h3 {
  margin-bottom: 14px;
}
.sq-card p {
  margin-bottom: 0;
}

.sq-card ul {
  list-style: none;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
}

.sq-card li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--grey);
  font-size: 15px;
  line-height: 1.6;
}

.sq-card li:last-child {
  margin-bottom: 0;
}

.sq-card li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: 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.5' 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 {
  width: 100%;
  column-count: 2;
  column-gap: 64px;
}

.sq-faq details {
  background: transparent;
  border-bottom: 1px solid var(--border-soft);
  padding: 0;
  margin-bottom: 0;
  transition: border-color 0.3s var(--ease);
  break-inside: avoid;
  page-break-inside: avoid;
}
.sq-faq details:first-child {
  border-top: 1px solid var(--border-soft);
}

.sq-section--grey .sq-faq details {
  background: transparent;
}

.sq-faq details[open] {
  border-color: var(--border);
}

.sq-faq summary {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 18px;
  color: var(--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(--blue-deep);
}

.sq-faq summary::-webkit-details-marker {
  display: none;
}

.sq-faq summary::after {
  content: "";
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  background: 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='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E")
    center / contain no-repeat;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sq-faq details[open] summary::after {
  transform: rotate(45deg);
}

.sq-faq p {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 24px;
  color: var(--grey);
  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 {
  position: relative;
  background: var(--grad-dark);
  color: var(--white);
  text-align: center;
  padding-top: calc(var(--sp-section) * 1.25);
  padding-bottom: calc(var(--sp-section) * 1.25);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sq-final::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: 48px 48px;
  -webkit-mask-image: radial-gradient(
    800px 400px at 50% 0%,
    #000,
    transparent 75%
  );
  mask-image: radial-gradient(800px 400px at 50% 0%, #000, transparent 75%);
  pointer-events: none;
}

.sq-final .sq-container {
  position: relative;
  z-index: 1;
}

.sq-final h2 {
  color: var(--white);
  margin-bottom: 12px;
}
.sq-final p {
  color: rgba(255, 255, 255, 0.7);
}

.sq-final .sq-btn {
  background: var(--white);
  color: var(--ink) !important;
  border-color: var(--white);
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.15);
  transition: all 0.3s var(--ease);
}

.sq-final .sq-btn:hover {
  transform: translateY(-2px);
  background: transparent;
  color: var(--white) !important;
  border-color: var(--white);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.sq-final p {
  max-width: 62ch;
  margin: 0 auto 26px;
  font-size: 17px;
}

/* ---------- Motion ---------- */

/* ---------- Hero (Ultra-Premium Light Theme UI) ---------- */
.sq-hero {
  position: relative;
  background: var(--white);
  padding-top: clamp(80px, 10vw, 160px);
  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-orb-2 {
  width: 500px;
  height: 500px;
  background: rgba(162, 107, 252, 0.3);
  top: 20%;
  right: -150px;
}
.sq-orb-3 {
  width: 400px;
  height: 400px;
  background: rgba(46, 213, 115, 0.2);
  bottom: -100px;
  left: -100px;
}

.sq-container {
  position: relative;
  z-index: 1;
}
.sq-container--narrow {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.sq-eyebrow-pill {
  display: inline-flex;
  padding: 8px 20px;
  background: var(--grad-blue);
  color: var(--white);
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  border: none;
  box-shadow: 0 4px 12px rgba(8, 175, 247, 0.3);
}

.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: #0b6195;
  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-text-gradient {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.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 */
.sq-css-ui-wrapper {
  position: relative;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  perspective: 1000px;
  z-index: 2;
  padding: 0 20px;
}

.sq-css-ui {
  width: 900px;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(15, 23, 42, 0.05);
}

.sq-ui-header {
  padding: 16px 20px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 12px;
}

@keyframes dotBlink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.9);
  }
}

.sq-ui-dots {
  display: flex;
  gap: 8px;
}
.sq-ui-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e1;
  animation: dotBlink 2s infinite ease-in-out;
}
.sq-ui-dots span:nth-child(1) {
  background: #ef4444;
  animation-delay: 0s;
}
.sq-ui-dots span:nth-child(2) {
  background: #eab308;
  animation-delay: 0.2s;
}
.sq-ui-dots span:nth-child(3) {
  background: #22c55e;
  animation-delay: 0.4s;
}

.sq-ui-title {
  font-size: 13px;
  font-family: monospace;
  color: #64748b;
  margin: 0 auto;
  transform: translateX(-30px);
}

.sq-ui-body {
  padding: 48px;
  background: #f8fafc;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}

.sq-node-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sq-node {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 220px;
  z-index: 2;
  position: relative;
}

.sq-node-icon {
  font-size: 24px;
  background: #f1f5f9;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.sq-node-text {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
  text-align: left;
}
.sq-node-text small {
  display: block;
  font-size: 12px;
  color: #64748b;
  font-weight: 400;
}

.sq-node-connector {
  flex: 1;
  height: 2px;
  background: #cbd5e1;
  position: relative;
  margin: 0 -10px;
  z-index: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.sq-connector-line {
  height: 100%;
  background: #3b82f6;
  width: 50%;
  animation: dataFlow 2s infinite linear;
}

@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 ---------- */
.sq-answer {
  position: relative;
  background: linear-gradient(135deg, var(--blue-tint-2) 0%, var(--white) 70%);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  padding: 32px 38px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  box-shadow: var(--shadow);
  max-width: 82ch;
}

.sq-answer strong {
  color: var(--black);
  font-weight: 600;
}

/* ---------- Overview: dark feature band ---------- */
.sq-section--dark {
  position: relative;
  background: var(--grad-dark);
  overflow: hidden;
  isolation: isolate;
}

/* subtle blueprint grid */
.sq-section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(
    900px 460px at 20% 0%,
    #000 0%,
    transparent 72%
  );
  mask-image: radial-gradient(900px 460px at 20% 0%, #000 0%, transparent 72%);
  z-index: -1;
  pointer-events: none;
}

/* glowing orb accents (two, symmetric) */
.sq-section--dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      520px 420px at 82% 30%,
      rgba(8, 175, 247, 0.2) 0%,
      transparent 65%
    ),
    radial-gradient(
      460px 360px at 12% 90%,
      rgba(8, 175, 247, 0.14) 0%,
      transparent 62%
    );
  z-index: -1;
  pointer-events: none;
}

.sq-section--dark .sq-section__head {
  margin-bottom: 44px;
  max-width: 60ch;
}
.sq-section--dark .sq-eyebrow {
  color: #7fd8ff;
}
.sq-section--dark .sq-eyebrow::before {
  background: linear-gradient(90deg, #7fd8ff, transparent);
}
.sq-section--dark h2 {
  color: var(--white);
}

/* ===== Two-column overview: answer (left) + key-fact panel (right) ===== */
.sq-overview-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 3.2vw, 48px);
  align-items: stretch;
}

/* the answer text — a clean dark panel on the left */
.sq-product .sq-answer--dark {
  position: relative;
  max-width: none;
  margin: 0;
  padding: clamp(34px, 3.2vw, 50px) clamp(32px, 3.4vw, 52px);
  border-radius: 22px;
  border: 1px solid rgba(8, 175, 247, 0.22);
  background:
    radial-gradient(
      130% 150% at 0% 0%,
      rgba(8, 175, 247, 0.12) 0%,
      transparent 45%
    ),
    linear-gradient(160deg, #111d2e 0%, #0b131f 100%);
  box-shadow:
    0 34px 70px rgba(0, 0, 0, 0.42),
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
  color: #ffffff;
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.85;
  letter-spacing: 0.004em;
}

/* right column: 2x2 grid of key-fact mini-cards */
.sq-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* animated angle for the traveling border light */
@property --sq-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.sq-fact {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 19px 23px;
  border-radius: 16px;
  border: 1px solid rgba(120, 190, 235, 0.16);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.055) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
}

/* the moving glow: a bright arc riding a rotating conic gradient,
   shown only on the 1.5px border ring via mask-composite */
.sq-fact::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px; /* border thickness */
  background: conic-gradient(
    from var(--sq-angle),
    transparent 0deg,
    transparent 250deg,
    rgba(8, 175, 247, 0.35) 300deg,
    #7fd8ff 340deg,
    #ffffff 350deg,
    #7fd8ff 360deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: sq-border-spin 4s linear infinite;
  pointer-events: none;
}

@keyframes sq-border-spin {
  to {
    --sq-angle: 360deg;
  }
}

.sq-fact b {
  position: relative;
  z-index: 1;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: clamp(17px, 1.5vw, 21px);
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.sq-fact span {
  position: relative;
  z-index: 1;
  font-size: 13.5px;
  color: #9fb0c4;
  font-weight: 500;
}

/* stagger each card so the lights don't move in lockstep */
.sq-facts .sq-fact:nth-child(2)::before {
  animation-delay: -1s;
}
.sq-facts .sq-fact:nth-child(3)::before {
  animation-delay: -2s;
}
.sq-facts .sq-fact:nth-child(4)::before {
  animation-delay: -3s;
}

/* glowing top-edge accent line */
.sq-answer--dark::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 44px;
  right: 44px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  box-shadow: 0 0 16px rgba(8, 175, 247, 0.7);
}

/* decorative quote badge, top-left, above the border */
.sq-answer--dark::after {
  content: "\201C";
  position: absolute;
  top: -22px;
  left: 30px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 46px;
  line-height: 1;
  padding-top: 18px;
  color: #fff;
  background: var(--grad-blue);
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(8, 175, 247, 0.45);
}

/* keyword lead-in glows cyan */
.sq-answer--dark strong {
  font-family: var(--heading-font);
  font-weight: 700;
  color: #fff;
  background: linear-gradient(100deg, #a9e6ff 0%, #22b8fb 55%, #7fd8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Split (two-column image + text) ---------- */
.sq-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4.5vw, 72px);
  align-items: center;
}

.sq-split--rev .sq-split__media {
  order: 2;
}

.sq-split__body {
  min-width: 0;
}
.sq-split__body .sq-section__head {
  margin-bottom: clamp(24px, 3vw, 36px);
}
.sq-split__media {
  min-width: 0;
}

.sq-split .sq-media {
  aspect-ratio: 5 / 4;
}

.sq-split ul {
  list-style: none;
  margin-top: 8px;
}

.sq-split li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  color: var(--grey);
  font-size: 16px;
}

.sq-split li strong {
  color: var(--ink);
  font-weight: 600;
}

.sq-split li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue-tint);
  box-shadow: inset 0 0 0 1px rgba(8, 175, 247, 0.25);
}

.sq-split li::after {
  content: "";
  position: absolute;
  left: 6.5px;
  top: 9px;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--blue-deep);
  border-bottom: 2px solid var(--blue-deep);
  transform: rotate(-45deg);
}

/* ---------- Stats ---------- */
.sq-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  text-align: center;
}

.sq-stat {
  padding: 32px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.sq-stat:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.sq-section--grey .sq-stat {
  background: var(--white);
}

.sq-stat b {
  display: block;
  font-family: var(--heading-font);
  font-size: var(--font-42);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: var(--grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.sq-stat span {
  display: block;
  margin-top: 12px;
  font-size: var(--font-14);
  color: var(--grey);
  font-weight: 500;
}

/* ---------- Chips ---------- */
.sq-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.sq-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 11px 22px;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: var(--font-14);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s var(--ease),
    color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.sq-chip:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  color: var(--blue-deep);
  box-shadow: 0 12px 24px rgba(8, 175, 247, 0.14);
}

/* ---------- Ecosystem Stats ---------- */
.sq-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  text-align: center;
  margin-top: 32px;
}

.sq-stat {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.02),
    0 8px 16px rgba(0, 0, 0, 0.03);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sq-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.04),
    0 16px 32px rgba(0, 0, 0, 0.06);
}

.sq-stat b {
  display: block;
  font-family: var(--heading-font);
  font-size: 28px;
  color: var(--blue-deep);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.sq-stat span {
  display: block;
  font-size: 15px;
  color: var(--grey);
  font-weight: 500;
}

/* ============================================================
   Industry / capability tiles — clean light grid
   ============================================================ */
.sq-section--chips-dark {
  position: relative;
  background: var(--grad-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sq-section--chips-dark h2 {
  color: #ffffff;
}
.sq-section--chips-dark p,
.sq-section--chips-dark .sq-eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.sq-section--chips-dark .sq-chips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.sq-section--chips-dark .sq-chip {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    background 0.3s var(--ease);
}

.sq-chip-border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px; /* border thickness */
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}

.sq-chip-border::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250%;
  height: 250%;
  background: conic-gradient(from 0deg, transparent 75%, var(--blue) 100%);
  transform-origin: center;
  animation: chipBorderSpin 9s linear infinite;
  opacity: 0;
}

@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;
  }
}

.sq-section--chips-dark .sq-chip:nth-child(1) .sq-chip-border::before {
  animation-delay: 0s;
}
.sq-section--chips-dark .sq-chip:nth-child(2) .sq-chip-border::before {
  animation-delay: 1.5s;
}
.sq-section--chips-dark .sq-chip:nth-child(3) .sq-chip-border::before {
  animation-delay: 3s;
}
.sq-section--chips-dark .sq-chip:nth-child(4) .sq-chip-border::before {
  animation-delay: 4.5s;
}
.sq-section--chips-dark .sq-chip:nth-child(5) .sq-chip-border::before {
  animation-delay: 6s;
}
.sq-section--chips-dark .sq-chip:nth-child(6) .sq-chip-border::before {
  animation-delay: 7.5s;
}

.sq-section--chips-dark .sq-chips:hover .sq-chip-border::before {
  animation-play-state: paused;
}

/* icon holder */
.sq-section--chips-dark .sq-chip::before {
  content: "";
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-image: var(--chip-icon);
  background-position: center;
  background-size: 24px 24px;
  background-repeat: no-repeat;
  background-color: rgba(8, 175, 247, 0.1);
  border: 1px solid rgba(8, 175, 247, 0.2);
  transition: transform 0.3s var(--ease);
}

.sq-section--chips-dark .sq-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(8, 175, 247, 0.2);
}

.sq-section--chips-dark .sq-chip:hover::before {
  transform: scale(1.05);
}

/* ---- 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) ---------- */
.sq-owner {
  position: relative;
  background: var(--grad-dark);
  color: var(--white);
  padding-top: var(--sp-section);
  padding-bottom: var(--sp-section);
  overflow: hidden;
}

.sq-owner::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(
    600px 400px at 85% 10%,
    #000,
    transparent 70%
  );
  mask-image: radial-gradient(600px 400px at 85% 10%, #000, transparent 70%);
  pointer-events: none;
}

.sq-owner .sq-container {
  position: relative;
  z-index: 1;
}

.sq-owner h2 {
  color: var(--white);
  margin-bottom: 8px;
}

.sq-owner p {
  color: #b8c2d0;
  max-width: 72ch;
  font-size: 17px;
}

.sq-owner .sq-eyebrow {
  color: #6fd4ff;
}
.sq-owner .sq-eyebrow::before {
  background: linear-gradient(90deg, #6fd4ff, transparent);
}

.sq-owner a:not(.sq-btn) {
  color: #6fd4ff;
}
.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(--white) !important;
  border-color: var(--white);
}

.sq-owner .sq-btn:hover {
  background: var(--white);
  color: var(--black) !important;
  border-color: var(--white);
}

/* ---------- Sibling products ---------- */
.sq-sib {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}

.sq-sib a {
  position: relative;
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
  box-shadow: var(--shadow-sm);
  font-weight: 400;
}

.sq-section--grey .sq-sib a {
  background: var(--white);
}

.sq-sib a::after {
  content: "";
  position: absolute;
  top: 30px;
  right: 30px;
  width: 22px;
  height: 22px;
  background-color: var(--blue);
  -webkit-mask: url("https://softqubes.com/wp-content/themes/softqube_custome_theme/media-img/arrow-next.webp")
    center / contain no-repeat;
  mask: url("https://softqubes.com/wp-content/themes/softqube_custome_theme/media-img/arrow-next.webp")
    center / contain no-repeat;
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.sq-sib a:hover {
  border-color: rgba(8, 175, 247, 0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.sq-sib a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.sq-sib h3 {
  color: var(--black);
  margin-bottom: 10px;
  padding-right: 28px;
}
.sq-sib p {
  margin-bottom: 0;
  color: var(--grey);
}

/* ---------- Owner Section ---------- */
.sq-owner {
  padding: 120px 0;
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.sq-owner__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sq-owner__content h2 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: var(--font-42);
}

.sq-owner__content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  line-height: 1.6;
}

.sq-owner__content strong {
  color: var(--white);
}

.sq-owner__actions {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.sq-owner__capabilities {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-left: 48px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.sq-cap-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.sq-cap-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(8, 175, 247, 0.1);
  border: 1px solid rgba(8, 175, 247, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.sq-cap-text h4 {
  color: var(--white);
  font-family: var(--pop);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.sq-cap-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.5;
}
.page-template-product-quantumdatalytica-tmpl header {
  background-color: #000;
}
