@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&display=swap");

.qcx-page {
  --qcx-bg: hsl(230 30% 96%);
  --qcx-fg: hsl(230 50% 10%);
  --qcx-card: hsla(0 0% 100% / 0.72);
  --qcx-card-strong: hsla(0 0% 100% / 0.84);
  --qcx-primary: hsl(201 50% 60%);
  --qcx-primary-soft: hsla(201 50% 60% / 0.14);
  --qcx-muted: hsl(220 10% 40%);
  --qcx-muted-soft: hsl(220 15% 88%);
  --qcx-border: hsla(220 15% 70% / 0.32);
  --qcx-danger: hsl(0 80% 55%);
  --qcx-shadow: 0 20px 60px -20px hsla(220 30% 50% / 0.12);
  --qcx-shadow-soft: 0 12px 30px -16px hsla(220 30% 40% / 0.18);
  position: relative;
  overflow-x: hidden;
  color: var(--qcx-fg);
  font-family: "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--qcx-bg);
  background: linear-gradient(#eff1f5 0%, #e7eaef 25%, #e0e6eb 50%, #d9e1e8 75%, #e7ebef 100%) fixed;
}

.qcx-page *,
.qcx-page *::before,
.qcx-page *::after {
  box-sizing: border-box;
}

.qcx-page img {
  display: block;
  max-width: 100%;
}

.qcx-page button,
.qcx-page input,
.qcx-page textarea {
  font: inherit;
}

.qcx-page a {
  color: inherit;
  text-decoration: none;
}

.qcx-container {
  width: min(100%, 1140px);
  margin: 0 auto;
  padding: 0 24px;
}

.qcx-container-wide {
  width: min(100%, 1320px);
}

.qcx-container-medium {
  width: min(100%, 980px);
}

.qcx-container-compact {
  width: min(100%, 820px);
}

.qcx-center {
  text-align: center;
}

.qcx-left {
  text-align: left;
}

.qcx-relative {
  position: relative;
}

.qcx-divider {
  height: 1px;
  width: min(100%, 1320px);
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, hsla(220 15% 55% / 0.12), transparent);
}

.qcx-section,
.qcx-cta {
  position: relative;
  padding: 144px 0;
}

.qcx-section::before,
.qcx-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, hsla(201 50% 60% / 0.03) 0%, transparent 48%),
    radial-gradient(circle at 80% 20%, hsla(201 50% 60% / 0.03) 0%, transparent 40%),
    radial-gradient(circle at 50% 85%, hsla(201 50% 60% / 0.025) 0%, transparent 40%);
  pointer-events: none;
}

.qcx-section > .qcx-container,
.qcx-cta > .qcx-container {
  position: relative;
  z-index: 1;
}

.qcx-observe .qcx-reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.qcx-observe.is-visible .qcx-reveal {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.qcx-delay-1 {
  transition-delay: 0.12s;
}

.qcx-delay-2 {
  transition-delay: 0.24s;
}

.qcx-delay-3 {
  transition-delay: 0.36s;
}

.qcx-delay-4 {
  transition-delay: 0.48s;
}

.qcx-delay-5 {
  transition-delay: 0.6s;
}

.qcx-kicker {
  display: inline-block;
  margin-bottom: 16px;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--qcx-primary);
}

.qcx-kicker-center {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.qcx-kicker-line {
  width: 32px;
  height: 1px;
  background: currentColor;
  transform-origin: center;
}

.qcx-kicker-danger {
  color: hsla(0 80% 55% / 0.72);
}

.qcx-kicker-accent {
  color: var(--qcx-primary);
}

.qcx-section-header {
  max-width: 760px;
  margin: 0 auto 80px;
  text-align: center;
}

.qcx-section-title {
  margin: 0 0 24px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--qcx-fg);
  text-wrap: balance;
}

.qcx-section-title span,
.qcx-hero-title span,
.qcx-text-primary {
  color: var(--qcx-primary);
  text-shadow:
    0 0 28px hsla(201 50% 60% / 0.18),
    0 0 72px hsla(201 50% 60% / 0.06);
}

.qcx-text-danger {
  color: var(--qcx-danger) !important;
  text-shadow: none !important;
}

@media (min-width: 768px) {
  .qcx-section-title,
  .qcx-hero-title {
    font-size: 3.75rem;
    line-height: 1;
  }

  .qcx-section-copy,
  .qcx-hero-copy {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .qcx-section-title,
  .qcx-hero-title {
    font-size: 4.5rem;
  }
}

.qcx-section-copy {
  max-width: 42rem;
  margin: 0 auto;
  color: var(--qcx-muted);
  font-size: 1.125rem;
  line-height: 1.625;
}

.qcx-section-copy strong {
  color: var(--qcx-fg);
}

.qcx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 16px 26px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.qcx-btn:hover {
  transform: translateY(-2px);
}

.qcx-btn-primary {
  color: #fff;
  background: var(--qcx-primary);
  box-shadow:
    0 10px 22px hsla(201 50% 60% / 0.22),
    0 2px 10px hsla(201 50% 60% / 0.18);
}

.qcx-btn-primary:hover {
  box-shadow:
    0 16px 28px hsla(201 50% 60% / 0.28),
    0 0 34px hsla(201 50% 60% / 0.12);
}

.qcx-btn-secondary {
  color: var(--qcx-fg);
  background: hsla(0 0% 100% / 0.65);
  border-color: hsla(220 15% 65% / 0.26);
  backdrop-filter: blur(10px) saturate(180%);
  box-shadow:
    inset 0 0 0 1px hsla(220 15% 65% / 0.06),
    0 8px 20px hsla(220 30% 40% / 0.06);
}

.qcx-btn-secondary:hover {
  border-color: hsla(201 50% 60% / 0.42);
  box-shadow: 0 8px 20px hsla(201 50% 60% / 0.08);
}

.qcx-hero {
  --qcx-hero-card-h: 420px;
  position: relative;
  min-height: 110vh;
  padding: 120px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.qcx-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.qcx-hero-crosshair {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.qcx-hero-crosshair-h {
  position: absolute;
  left: 0;
  right: 0;
  top: 48%;
  height: 2px;
  background: hsla(201 50% 60% / 0.22);
  box-shadow: 0 0 12px hsla(201 50% 60% / 0.14);
}

.qcx-hero-crosshair-v {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 27%;
  width: 2px;
  background: hsla(201 50% 60% / 0.22);
  box-shadow: 0 0 12px hsla(201 50% 60% / 0.14);
}

.qcx-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, hsla(201 50% 60% / 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.4;
}

.qcx-hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, hsla(201 50% 60% / 0.03) 0%, transparent 55%);
}

.qcx-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
}

.qcx-hero-grid-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.qcx-hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(200px);
  opacity: 0.06;
  animation: qcxGlowPulse 8s ease-in-out infinite;
}

.qcx-hero-glow-primary {
  width: 1000px;
  height: 1000px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: hsla(201 50% 60% / 0.2);
}

.qcx-hero-glow-accent {
  width: 500px;
  height: 500px;
  right: 25%;
  top: 33%;
  transform: translate(50%, -50%);
  background: hsla(201 50% 60% / 0.16);
  animation-duration: 10s;
  animation-delay: 2s;
}

.qcx-hero-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.qcx-hero-card {
  position: relative;
  width: min(90%, 56rem);
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background: hsla(220 20% 98% / 0.6);
  backdrop-filter: blur(24px) saturate(180%);
  box-shadow:
    inset 0 0 0 1px hsla(201 50% 60% / 0.08),
    0 20px 60px -20px hsla(220 30% 50% / 0.12),
    0 0 40px hsla(201 50% 60% / 0.04);
}

.qcx-hero-window {
  position: absolute;
  inset: 0;
}

.qcx-hero-window-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  pointer-events: none;
}

.qcx-hero-scan {
  position: absolute;
  z-index: 2;
  background: var(--qcx-primary);
  box-shadow: 0 0 15px hsla(201 50% 60% / 0.5), 0 0 40px hsla(201 50% 60% / 0.25);
}

.qcx-hero-scan-h {
  height: 2px;
  width: 100%;
  top: 0;
  left: 0;
  animation: qcxScanDown 3.5s linear infinite;
}

.qcx-hero-scan-v {
  width: 2px;
  height: 100%;
  top: 0;
  left: 0;
  animation: qcxScanAcross 5s linear infinite;
  animation-delay: 1.5s;
}

.qcx-hero-mini-row {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 64px;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  padding: 0 48px;
  z-index: 3;
}

.qcx-hero-mini {
  position: relative;
  width: 80px;
  height: 112px;
  border-radius: 12px;
  background: hsla(220 20% 90% / 0.8);
  border: 1px solid hsla(201 50% 60% / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qcx-hero-mini-frame {
  width: 48px;
  height: 64px;
  border-radius: 8px;
  border: 1px solid hsla(201 50% 60% / 0.3);
  background: hsla(201 50% 60% / 0.05);
}

.qcx-hero-mini-outline {
  position: absolute;
  inset: -12px;
  border-radius: 12px;
  border: 1px solid hsla(201 50% 60% / 0.4);
  box-shadow: 0 0 15px hsla(201 50% 60% / 0.12), inset 0 0 15px hsla(201 50% 60% / 0.03);
  opacity: 1;
  transform: scale(1);
}

.qcx-hero-mini-outline-alert {
  border-color: hsla(0 80% 55% / 0.5);
  box-shadow: 0 0 15px hsla(0 80% 55% / 0.15), inset 0 0 15px hsla(0 80% 55% / 0.05);
}

.qcx-hero-mini-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid var(--qcx-danger);
  background: hsla(0 80% 55% / 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  color: var(--qcx-danger);
}

.qcx-hero-mini-tag {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid;
  background: hsla(201 50% 60% / 0.1);
  white-space: nowrap;
  opacity: 0;
  animation: qcxHeroTag 4s ease-in-out infinite;
}

.qcx-hero-mini-tag-primary {
  top: -34px;
  border-color: hsla(201 50% 60% / 0.2);
  color: hsla(201 50% 60% / 0.95);
  animation-delay: 3s;
}

.qcx-hero-mini-tag-danger {
  bottom: -34px;
  border-color: hsla(0 80% 55% / 0.2);
  background: hsla(0 80% 55% / 0.1);
  color: var(--qcx-danger);
  animation-delay: 3.5s;
}

.qcx-hero-ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48px;
  background: hsla(220 20% 90% / 0.6);
  border-top: 1px solid hsla(201 50% 60% / 0.1);
  overflow: hidden;
  z-index: 2;
}

.qcx-hero-ticker-track {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 16px;
  width: calc(100% + 64px);
  animation: qcxTicker 2s linear infinite;
}

.qcx-hero-ticker-track span {
  width: 32px;
  height: 4px;
  border-radius: 999px;
  background: hsla(201 50% 60% / 0.1);
  flex: 0 0 auto;
}

.qcx-hero-badges {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  display: none;
}

.qcx-hero-badge {
  position: absolute;
  border-radius: 16px;
  padding: 12px 16px;
  background: hsla(220 20% 98% / 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: inset 0 0 0 1px hsla(201 50% 60% / 0.08), 0 4px 16px hsla(220 30% 40% / 0.06);
  animation: qcxFloat 6s ease-in-out infinite;
}

.qcx-hero-badge-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: hsla(230 50% 10% / 0.9);
}

.qcx-hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--qcx-primary);
  animation: qcxPulseGlow 2s ease-in-out infinite;
}

.qcx-hero-badge-sub {
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  color: var(--qcx-muted);
}

.qcx-hero-badge-danger .qcx-hero-badge-dot {
  background: var(--qcx-danger);
}

.qcx-hero-badge-one { left: 6%; top: 18%; }
.qcx-hero-badge-two { left: 72%; top: 12%; animation-duration: 7s; }
.qcx-hero-badge-three { left: 68%; top: 62%; animation-duration: 8s; }
.qcx-hero-badge-four { left: 3%; top: 68%; animation-duration: 9s; }

.qcx-hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--qcx-bg), transparent 45%);
  pointer-events: none;
  z-index: 5;
}

.qcx-hero-inner {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 160px 0 120px;
  pointer-events: auto;
}

.qcx-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.qcx-hero-actions-below {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(50% + (var(--qcx-hero-card-h) / 2) + 44px);
  z-index: 6;
  width: 100%;
  padding: 0 24px;
}

.qcx-hero-title {
  max-width: 1040px;
  margin: 0 auto 24px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.qcx-hero-copy {
  max-width: 42rem;
  margin: 0 auto 56px;
  color: var(--qcx-muted);
  font-size: 1.125rem;
  line-height: 1.625;
}

.qcx-problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.qcx-problem-card {
  position: relative;
  min-height: 360px;
  padding: 32px;
  border-radius: 24px;
  overflow: hidden;
}

.qcx-problem-card-danger {
  background: linear-gradient(135deg, hsla(0 30% 95% / 0.9), hsla(0 20% 92% / 0.95));
  box-shadow: inset 0 0 0 1px hsla(0 50% 60% / 0.1), 0 20px 60px -20px hsla(0 50% 60% / 0.08);
}

.qcx-problem-card-primary {
  background: linear-gradient(135deg, hsla(201 30% 95% / 0.9), hsla(201 25% 92% / 0.95));
  box-shadow: inset 0 0 0 1px hsla(201 50% 60% / 0.12), 0 20px 60px -20px hsla(201 50% 60% / 0.08);
}

.qcx-problem-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: hsla(0 80% 55% / 0.64);
}

.qcx-problem-label-primary {
  color: hsla(201 50% 60% / 0.64);
}

.qcx-problem-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--qcx-primary);
  animation: qcxPulse 2s infinite;
}

.qcx-problem-dot-danger {
  background: var(--qcx-danger);
}

.qcx-problem-items {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
}

.qcx-problem-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.qcx-problem-icon {
  color: var(--qcx-danger);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.qcx-problem-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 600;
  color: hsla(230 50% 10% / 0.88);
}

.qcx-problem-item span {
  display: block;
  color: var(--qcx-muted);
  font-size: 13px;
  line-height: 1.55;
}

.qcx-noise-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

.qcx-problem-scan-h,
.qcx-problem-scan-v {
  position: absolute;
  pointer-events: none;
}

.qcx-problem-scan-h {
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: hsla(201 50% 60% / 0.32);
  box-shadow: 0 0 20px hsla(201 50% 60% / 0.2);
  animation: qcxScanDown 4s linear infinite;
}

.qcx-problem-scan-v {
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: hsla(201 50% 60% / 0.22);
  box-shadow: 0 0 15px hsla(201 50% 60% / 0.15);
  animation: qcxScanAcross 6s linear infinite 1s;
}

.qcx-neural {
  position: relative;
  width: 288px;
  height: 288px;
  margin: 96px auto 0;
}

.qcx-neural-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.qcx-neural-line,
.qcx-neural-line-accent {
  fill: none;
  stroke-width: 1;
  stroke-dasharray: 6 4;
  animation: qcxNeuralFlow 3s linear infinite;
}

.qcx-neural-line {
  stroke: hsla(201 50% 60% / 0.25);
}

.qcx-neural-line-accent {
  stroke: hsla(201 50% 60% / 0.4);
}

.qcx-neural-ring {
  position: absolute;
  border-radius: 999px;
  border: 1px solid transparent;
}

.qcx-neural-ring-outer {
  inset: 0;
  border-color: hsla(201 50% 60% / 0.2);
  animation: qcxSpin 18s linear infinite;
}

.qcx-neural-ring-middle {
  inset: 24px;
  border-color: hsla(201 50% 60% / 0.3);
  animation: qcxSpinReverse 14s linear infinite;
}

.qcx-neural-ring-inner {
  inset: 48px;
  border-color: hsla(201 50% 60% / 0.4);
  animation: qcxSpin 10s linear infinite;
}

.qcx-neural-core {
  position: absolute;
  inset: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: hsla(201 50% 60% / 0.1);
  box-shadow:
    0 0 30px hsla(201 50% 60% / 0.2),
    0 0 80px hsla(201 50% 60% / 0.06);
  animation: qcxCoreGlow 3s ease-in-out infinite;
}

.qcx-neural-core-inner {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: hsla(201 50% 60% / 0.3);
  animation: qcxPulseGlow 2.4s ease-in-out infinite;
}

.qcx-neural-tag {
  position: absolute;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid hsla(201 50% 60% / 0.1);
  background: hsla(220 20% 98% / 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 0 20px hsla(201 50% 60% / 0.06);
}

.qcx-neural-tag span {
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 600;
  color: var(--qcx-primary);
  letter-spacing: 0.06em;
}

.qcx-neural-tag-tr {
  left: calc(50% + 113px);
  top: calc(50% - 149px);
}

.qcx-neural-tag-br {
  left: calc(50% + 113px);
  top: calc(50% + 113px);
}

.qcx-neural-tag-bl {
  left: calc(50% - 201px);
  top: calc(50% + 113px);
}

.qcx-neural-tag-tl {
  left: calc(50% - 201px);
  top: calc(50% - 149px);
}

.qcx-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.qcx-feature-card {
  --qcx-rotate-x: 0deg;
  --qcx-rotate-y: 0deg;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, hsla(201 50% 60% / 0.1), transparent 50%);
  transform: perspective(1200px) rotateX(var(--qcx-rotate-x)) rotateY(var(--qcx-rotate-y));
  transform-style: preserve-3d;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.qcx-feature-card:hover {
  background: linear-gradient(135deg, hsla(201 50% 60% / 0.22), hsla(201 50% 60% / 0.08) 50%, transparent);
}

.qcx-feature-card-inner {
  height: 100%;
  padding: 32px;
  border-radius: 23px;
  background: hsla(220 20% 98% / 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: inset 0 0 0 1px hsla(201 50% 60% / 0.08);
}

.qcx-card-tag {
  margin-bottom: 12px;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: hsla(201 50% 60% / 0.64);
}

.qcx-feature-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
}

.qcx-feature-card p {
  margin: 0 0 24px;
  color: var(--qcx-muted);
  font-size: 14px;
  line-height: 1.7;
}

.qcx-feature-visual {
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qcx-feature-ocr {
  flex-direction: column;
  gap: 8px;
}

.qcx-feature-ocr span {
  min-width: 168px;
  padding: 7px 12px;
  border-radius: 8px;
  border: 1px solid hsla(201 50% 60% / 0.2);
  background: hsla(201 50% 60% / 0.05);
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  color: hsla(201 50% 60% / 0.8);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.qcx-feature-card:hover .qcx-feature-ocr span {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.qcx-feature-card:not(:hover) .qcx-feature-ocr span {
  opacity: 0.34;
  transform: translateX(-8px) scale(0.97);
}

.qcx-feature-presence {
  display: grid;
  grid-template-columns: repeat(3, 40px);
  gap: 8px;
}

.qcx-feature-presence span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid;
  font-size: 12px;
  font-weight: 700;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.qcx-feature-presence .is-present {
  border-color: hsla(201 50% 60% / 0.3);
  background: hsla(201 50% 60% / 0.05);
  color: hsla(201 50% 60% / 0.5);
}

.qcx-feature-presence .is-missing {
  border-color: hsla(0 80% 55% / 0.3);
  background: hsla(0 80% 55% / 0.05);
  color: var(--qcx-danger);
}

.qcx-feature-card:hover .qcx-feature-presence .is-missing {
  border-color: hsla(0 80% 55% / 0.5);
  transform: scale(1.15);
  box-shadow: 0 0 12px hsla(0 80% 55% / 0.15);
}

.qcx-feature-scratch {
  position: relative;
}

.qcx-feature-scratch::before {
  content: "";
  width: 128px;
  height: 96px;
  border-radius: 12px;
  background: hsla(220 20% 90% / 0.6);
}

.qcx-scratch-blob {
  position: absolute;
  border-radius: 999px;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.qcx-scratch-blob-one {
  top: 42px;
  left: calc(50% - 34px);
  width: 40px;
  height: 24px;
  background: hsla(0 80% 55% / 0.3);
  filter: blur(10px);
}

.qcx-scratch-blob-two {
  right: calc(50% - 40px);
  bottom: 42px;
  width: 32px;
  height: 16px;
  background: hsla(0 80% 55% / 0.4);
  filter: blur(6px);
}

.qcx-feature-card:hover .qcx-scratch-blob-one,
.qcx-feature-card:hover .qcx-scratch-blob-two {
  opacity: 0.9;
  transform: scale(1);
}

.qcx-feature-card:not(:hover) .qcx-scratch-blob-one,
.qcx-feature-card:not(:hover) .qcx-scratch-blob-two {
  opacity: 0.15;
  transform: scale(0.7);
}

.qcx-scratch-badge {
  position: absolute;
  top: 20px;
  right: calc(50% - 74px);
  padding: 3px 6px;
  border-radius: 5px;
  border: 1px solid hsla(0 80% 55% / 0.2);
  background: hsla(0 80% 55% / 0.1);
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  color: var(--qcx-danger);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.qcx-scratch-beam {
  position: absolute;
  left: calc(50% - 64px);
  right: calc(50% - 64px);
  top: 32px;
  height: 1px;
  background: hsla(0 80% 55% / 0.4);
  box-shadow: 0 0 10px hsla(0 80% 55% / 0.2);
  opacity: 0;
}

.qcx-feature-card:hover .qcx-scratch-badge {
  opacity: 1;
  transform: scale(1);
}

.qcx-feature-card:hover .qcx-scratch-beam {
  opacity: 1;
  animation: qcxScratchScan 2s linear infinite;
}

.qcx-feature-measurement .qcx-measure-box {
  position: relative;
  width: 112px;
  height: 80px;
  border-radius: 12px;
  border: 1px solid hsla(201 50% 60% / 0.3);
  background: hsla(201 50% 60% / 0.05);
}

.qcx-measure-label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  color: var(--qcx-primary);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.qcx-measure-label-top {
  top: -28px;
}

.qcx-measure-label-bottom {
  bottom: -28px;
}

.qcx-measure-line-h,
.qcx-measure-line-v {
  position: absolute;
  background: var(--qcx-primary);
  opacity: 0.2;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.qcx-measure-line-h {
  top: 50%;
  left: -24px;
  right: -24px;
  height: 1px;
  transform: scaleX(0.4);
  transform-origin: center;
}

.qcx-measure-line-v {
  top: -16px;
  bottom: -16px;
  left: 50%;
  width: 1px;
  transform: scaleY(0.4);
  transform-origin: center;
}

.qcx-feature-card:hover .qcx-measure-label-top,
.qcx-feature-card:hover .qcx-measure-label-bottom {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.qcx-feature-card:not(:hover) .qcx-measure-label-top {
  opacity: 0.3;
  transform: translateX(-50%) translateY(4px);
}

.qcx-feature-card:not(:hover) .qcx-measure-label-bottom {
  opacity: 0.3;
  transform: translateX(-50%) translateY(-4px);
}

.qcx-feature-card:hover .qcx-measure-line-h {
  opacity: 0.6;
  transform: scaleX(1);
}

.qcx-feature-card:hover .qcx-measure-line-v {
  opacity: 0.6;
  transform: scaleY(1);
}

.qcx-section-glow {
  overflow: hidden;
}

.qcx-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(180px);
  pointer-events: none;
}

.qcx-glow-accent {
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  background: hsla(201 50% 60% / 0.16);
  transform: translate(-50%, -50%);
  animation: qcxAmbientGlow 8s ease-in-out infinite;
}

.qcx-reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.qcx-reason-card,
.qcx-outcome-card,
.qcx-step-orbit,
.qcx-table-wrap,
.qcx-industry-card {
  background: hsla(220 20% 98% / 0.6);
  backdrop-filter: blur(24px) saturate(180%);
  box-shadow:
    inset 0 0 0 1px hsla(201 50% 60% / 0.08),
    0 20px 60px -20px hsla(220 30% 50% / 0.12),
    0 0 40px hsla(201 50% 60% / 0.04);
}

.qcx-reason-card {
  padding: 24px;
  border-radius: 16px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.qcx-reason-card:hover,
.qcx-outcome-card:hover,
.qcx-industry-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow:
    inset 0 0 0 1px hsla(201 50% 60% / 0.15),
    0 30px 80px -20px hsla(220 30% 50% / 0.18),
    0 0 60px hsla(201 50% 60% / 0.08);
}

.qcx-reason-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.qcx-reason-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--qcx-primary);
  animation: qcxPulse 2s infinite;
}

.qcx-reason-head span:last-child {
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--qcx-primary);
}

.qcx-reason-card h3,
.qcx-outcome-card h3,
.qcx-step-card h3,
.qcx-industry-card h3 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
}

.qcx-reason-card p,
.qcx-outcome-card p,
.qcx-step-card p {
  margin: 0;
  color: var(--qcx-muted);
  font-size: 12px;
  line-height: 1.65;
}

.qcx-pipeline {
  position: relative;
}

.qcx-pipeline-line {
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  height: 1px;
  overflow: hidden;
}

.qcx-pipeline-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, hsla(201 50% 60% / 0.3), transparent);
}

.qcx-pipeline-packet {
  position: absolute;
  top: 50%;
  left: -5%;
  width: 32px;
  height: 1px;
  background: var(--qcx-primary);
  box-shadow:
    0 0 15px hsla(201 50% 60% / 0.35),
    0 0 30px hsla(201 50% 60% / 0.15);
  transform: translateY(-50%);
  animation: qcxPacketFlow 4s linear infinite 2s;
}

.qcx-pipeline-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.qcx-step-card {
  text-align: center;
}

.qcx-step-orbit {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.qcx-step-orbit strong {
  position: relative;
  z-index: 1;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 20px;
  font-weight: 700;
  color: var(--qcx-primary);
}

.qcx-step-ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px solid hsla(201 50% 60% / 0.3);
}

.qcx-step-ring-one {
  animation: qcxStepPulse 2.5s ease-in-out infinite;
}

.qcx-step-ring-two {
  border-color: hsla(201 50% 60% / 0.15);
  animation: qcxStepPulseWide 2.5s ease-in-out infinite 0.3s;
}

.qcx-industry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 780px;
  margin: 0 auto;
}

.qcx-industry-card {
  border-radius: 24px;
  padding: 40px 24px;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.qcx-industry-icon {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 48px;
  transition: transform 0.3s ease;
}

.qcx-industry-card:hover .qcx-industry-icon {
  transform: scale(1.2) rotate(5deg);
}

.qcx-industry-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.qcx-industry-card li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--qcx-muted);
  font-size: 14px;
}

.qcx-industry-card li span {
  color: var(--qcx-primary);
  font-size: 12px;
}

.qcx-table-wrap {
  border-radius: 24px;
  overflow: hidden;
}

.qcx-table {
  width: 100%;
  border-collapse: collapse;
}

.qcx-table th {
  padding: 20px 24px;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--qcx-muted);
}

.qcx-table th:first-child {
  text-align: left;
}

.qcx-table th:last-child {
  color: var(--qcx-primary);
}

.qcx-table td {
  padding: 16px 24px;
  border-top: 1px solid hsla(201 50% 60% / 0.1);
  text-align: center;
}

.qcx-table td:first-child {
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: hsla(230 50% 10% / 0.8);
}

.qcx-table td:not(:first-child) {
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
}

.qcx-negative {
  color: hsla(0 80% 55% / 0.6);
}

.qcx-neutral {
  color: var(--qcx-muted);
}

.qcx-positive {
  color: var(--qcx-primary);
}

.qcx-positive-muted {
  color: hsla(201 50% 60% / 0.6);
}

.qcx-outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.qcx-outcome-card {
  padding: 32px;
  border-radius: 24px;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.qcx-outcome-icon {
  margin-bottom: 12px;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 24px;
  font-weight: 700;
  color: var(--qcx-primary);
}

.qcx-cta {
  overflow: hidden;
}

.qcx-glow-primary {
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  background: hsla(201 50% 60% / 0.16);
  transform: translate(-50%, -50%);
  animation: qcxAmbientGlow 8s ease-in-out infinite;
}

.qcx-glow-secondary {
  bottom: 0;
  left: 25%;
  width: 500px;
  height: 500px;
  background: hsla(201 50% 60% / 0.12);
  filter: blur(160px);
  animation: qcxAmbientGlowWide 10s ease-in-out infinite 2s;
}

.qcx-cta-line {
  margin: 0 0 56px;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--qcx-primary);
}

.qcx-btn-cta {
  font-size: 16px;
}

.qcx-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.qcx-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.qcx-modal-backdrop {
  position: absolute;
  inset: 0;
  background: hsla(230 50% 10% / 0.2);
  backdrop-filter: blur(8px);
}

.qcx-modal-panel {
  position: relative;
  width: min(100%, 560px);
  max-height: calc(100vh - 32px);
  overflow: auto;
  border-radius: 24px;
  border: 1px solid hsla(201 50% 60% / 0.15);
  background: linear-gradient(145deg, hsla(220 20% 98% / 0.97), hsla(215 20% 95% / 0.98));
  box-shadow:
    0 0 60px hsla(201 50% 60% / 0.08),
    0 25px 50px -12px hsla(220 30% 50% / 0.12);
  backdrop-filter: blur(40px);
  transform: translateY(24px) scale(0.95);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.qcx-modal.is-open .qcx-modal-panel {
  transform: translateY(0) scale(1);
}

.qcx-modal-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsla(201 50% 60% / 0.4), transparent);
}

.qcx-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid hsla(201 50% 60% / 0.1);
  border-radius: 999px;
  background: hsla(220 15% 88% / 0.6);
  color: var(--qcx-muted);
  font-size: 18px;
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.qcx-modal-close:hover {
  color: var(--qcx-fg);
  border-color: hsla(201 50% 60% / 0.3);
}

.qcx-modal-body {
  padding: 32px;
}

.qcx-modal-form {
  display: block;
}

.qcx-modal-form-view,
.qcx-modal-success {
  display: grid;
  gap: 20px;
}

.qcx-modal-success[hidden] {
  display: none !important;
}

.qcx-modal-form-view[hidden] {
  display: none !important;
}

.qcx-modal-intro {
  margin-bottom: 4px;
}

.qcx-modal-kicker {
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--qcx-primary);
}

.qcx-modal-intro h3 {
  margin: 10px 0 6px;
  font-size: 24px;
  font-weight: 700;
}

.qcx-modal-intro p {
  margin: 0;
  color: var(--qcx-muted);
  font-size: 14px;
}

.qcx-modal-grid {
  display: grid;
  gap: 16px;
}

.qcx-modal-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.qcx-field {
  display: grid;
  gap: 6px;
}

.qcx-field input,
.qcx-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid hsla(201 50% 60% / 0.15);
  background: hsla(230 30% 96% / 0.6);
  color: var(--qcx-fg);
  outline: none;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.qcx-field textarea {
  min-height: 80px;
  resize: none;
}

.qcx-field input::placeholder,
.qcx-field textarea::placeholder {
  color: hsla(220 10% 40% / 0.5);
}

.qcx-field input:focus,
.qcx-field textarea:focus {
  border-color: hsla(201 50% 60% / 0.5);
  box-shadow: 0 0 0 1px hsla(201 50% 60% / 0.2);
}

.qcx-field.is-error input,
.qcx-field.is-error textarea {
  border-color: hsla(0 80% 55% / 0.6);
}

.qcx-field-error {
  min-height: 14px;
  color: var(--qcx-danger);
  font-size: 12px;
}

.qcx-btn-modal {
  width: 100%;
  padding-block: 14px;
}

.qcx-modal-success {
  justify-items: center;
  padding: 48px 0 20px;
  text-align: center;
}

.qcx-success-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid hsla(201 50% 60% / 0.3);
  background: hsla(201 50% 60% / 0.15);
  color: var(--qcx-primary);
  font-size: 28px;
  font-weight: 700;
  box-shadow: 0 0 30px hsla(201 50% 60% / 0.08);
}

.qcx-modal-success h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.qcx-modal-success p {
  margin: 0;
  color: var(--qcx-muted);
  font-size: 14px;
}

@keyframes qcxPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.25); }
}

@keyframes qcxPulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.72; }
  50% { transform: scale(1.14); opacity: 1; }
}

@keyframes qcxCoreGlow {
  0%, 100% {
    box-shadow:
      0 0 30px hsla(201 50% 60% / 0.2),
      0 0 80px hsla(201 50% 60% / 0.06);
  }
  50% {
    box-shadow:
      0 0 50px hsla(201 50% 60% / 0.3),
      0 0 120px hsla(201 50% 60% / 0.1);
  }
}

@keyframes qcxSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes qcxSpinReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes qcxNeuralFlow {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -20; }
}

@keyframes qcxScanDown {
  from { top: 0; }
  to { top: 100%; }
}

@keyframes qcxScanAcross {
  from { left: 0; }
  to { left: 100%; }
}

@keyframes qcxScratchScan {
  from { top: 32px; }
  to { top: 128px; }
}

@keyframes qcxPacketFlow {
  from { left: -5%; }
  to { left: 105%; }
}

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

@keyframes qcxStepPulseWide {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.5); opacity: 0; }
}

@keyframes qcxAmbientGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.04; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.08; }
}

@keyframes qcxAmbientGlowWide {
  0%, 100% { transform: scale(1); opacity: 0.03; }
  50% { transform: scale(1.15); opacity: 0.06; }
}

@keyframes qcxGlowPulse {
  0%, 100% { opacity: 0.04; }
  50% { opacity: 0.08; }
}

@keyframes qcxFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes qcxHeroTag {
  0%, 18% { opacity: 0; }
  26%, 74% { opacity: 1; }
  82%, 100% { opacity: 0; }
}

@keyframes qcxTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-64px); }
}

@media (min-width: 1024px) {
  .qcx-hero-badges {
    display: block;
  }
}

@media (max-width: 1200px) {
}

@media (max-width: 991px) {
  .qcx-section,
  .qcx-cta {
    padding: 112px 0;
  }

  .qcx-hero {
    min-height: auto;
    padding: 112px 0 0;
    --qcx-hero-card-h: 360px;
  }

  .qcx-hero-inner {
    padding: 150px 0 104px;
  }

  .qcx-hero-card {
    height: 360px;
  }

  .qcx-problem-grid,
  .qcx-feature-grid,
  .qcx-reason-grid,
  .qcx-pipeline-grid,
  .qcx-industry-grid,
  .qcx-outcome-grid {
    grid-template-columns: 1fr;
  }

  .qcx-pipeline-line {
    display: none;
  }

  .qcx-modal-grid-two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .qcx-container {
    padding: 0 18px;
  }

  .qcx-divider {
    width: calc(100% - 36px);
  }

  .qcx-section,
  .qcx-cta {
    padding: 88px 0;
  }

  .qcx-section-header {
    margin-bottom: 56px;
  }

  .qcx-kicker {
    font-size: 11px;
    letter-spacing: 0.24em;
  }

  .qcx-kicker-line {
    width: 22px;
  }

  .qcx-section-title,
  .qcx-hero-title {
    line-height: 1;
  }

  .qcx-btn {
    min-width: 100%;
  }

  .qcx-hero-actions-below {
    top: calc(50% + (var(--qcx-hero-card-h) / 2) + 32px);
  }

  .qcx-hero-card {
    width: calc(100% - 36px);
    height: 320px;
  }

  .qcx-hero {
    --qcx-hero-card-h: 320px;
  }

  .qcx-hero-mini-row {
    padding: 0 28px;
    bottom: 56px;
  }

  .qcx-problem-card,
  .qcx-feature-card-inner,
  .qcx-outcome-card,
  .qcx-industry-card {
    padding: 24px;
  }

  .qcx-neural {
    width: 240px;
    height: 240px;
    margin-top: 72px;
  }

  .qcx-neural-tag {
    padding: 8px 12px;
  }

  .qcx-neural-tag span {
    font-size: 9px;
  }

  .qcx-neural-tag-tr {
    left: calc(50% + 88px);
    top: calc(50% - 132px);
  }

  .qcx-neural-tag-br {
    left: calc(50% + 88px);
    top: calc(50% + 100px);
  }

  .qcx-neural-tag-bl {
    left: calc(50% - 170px);
    top: calc(50% + 100px);
  }

  .qcx-neural-tag-tl {
    left: calc(50% - 170px);
    top: calc(50% - 132px);
  }

  .qcx-modal-body {
    padding: 24px 18px;
  }
}
