/** Shopify CDN: Minification failed

Line 440:0 Unexpected "{"
Line 440:1 Unexpected "{"
Line 440:3 Expected identifier but found "."
Line 475:0 Expected "}" to go with "{"

**/
.clarity-viz-section {
  width: 100%;
  padding: 40px 20px;
  color: var(--clarity-viz-text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.clarity-viz-container {
  max-width: 1200px;
  margin: 0 auto;
}

.clarity-viz-header {
  text-align: center;
  margin-bottom: 48px;
}

.clarity-viz-heading {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 12px 0;
  color: var(--clarity-viz-text);
  letter-spacing: -0.02em;
}

.clarity-viz-subheading {
  font-size: 18px;
  line-height: 1.5;
  color: var(--clarity-viz-text);
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto;
}

.clarity-viz-subheading p {
  margin: 0;
}

.clarity-viz-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.clarity-viz-panel {
  border-radius: 12px;
  padding: 28px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.clarity-viz-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

.clarity-viz-panel:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.15);
}

.clarity-viz-panel--traditional {
  background: #fafafa;
}

.clarity-viz-panel--traditional::before {
  background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.3), transparent);
}

.clarity-viz-panel--nova {
  background: #ffffff;
  border-color: rgba(16, 185, 129, 0.2);
}

.clarity-viz-panel--nova::before {
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.5), transparent);
}

.clarity-viz-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 8px;
}

.clarity-viz-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #0f172a;
  font-family: var(--heading-font-family);
  padding: 4px 0;
}

.clarity-viz-panel--nova .clarity-viz-label {
  color: #065f46;
}

.clarity-viz-status {
  font-size: 10px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  background: rgba(0, 0, 0, 0.04);
  padding: 4px 8px;
  border-radius: 4px;
}

.clarity-viz-canvas {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Grid Background */
.clarity-viz-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.6;
}

/* Axis Labels */
.clarity-viz-axis-labels {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.clarity-viz-y-axis {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5px 0;
}

.clarity-viz-y-axis span {
  font-size: 8px;
  font-weight: 600;
  color: #64748b;
  font-family: 'Courier New', monospace;
  background: #ffffff;
  padding: 1px 3px;
  border-radius: 2px;
  display: inline-block;
}

.clarity-viz-x-axis {
  position: absolute;
  bottom: -20px;
  left: 40px;
  right: 40px;
  display: flex;
  justify-content: space-between;
}

.clarity-viz-x-axis span {
  font-size: 7px;
  font-weight: 600;
  color: #64748b;
  font-family: 'Courier New', monospace;
  text-align: center;
  line-height: 1.2;
}

.clarity-viz-x-axis span:nth-child(2),
.clarity-viz-x-axis span:nth-child(4),
.clarity-viz-x-axis span:nth-child(6) {
  display: none;
}

/* Spectrum Canvas */
.clarity-viz-spectrum {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 600 / 320;
  position: relative;
  z-index: 1;
}

/* Legend */
.clarity-viz-legend {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.clarity-viz-legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 500;
  color: #475569;
}

.clarity-viz-legend-color {
  width: 16px;
  height: 3px;
  border-radius: 2px;
  display: block;
}

.clarity-viz-legend-color--speech {
  background: linear-gradient(90deg, #10b981, #059669);
}

.clarity-viz-legend-color--noise {
  background: linear-gradient(90deg, #ef4444, #dc2626);
}

.clarity-viz-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 50px;
  margin-bottom: 16px;
  padding: 14px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.clarity-viz-metric {
  text-align: center;
  padding: 10px 6px;
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.clarity-viz-metric-label {
  font-size: 10px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.clarity-viz-metric-value {
  font-size: 26px;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 4px;
  line-height: 1;
}

.clarity-viz-metric-value--animate {
  opacity: 1;
  transform: scale(1);
}

.clarity-viz-metric-value--bad {
  color: #dc2626;
}

.clarity-viz-metric-value--good {
  color: #059669;
}

  .clarity-viz-metric-status {
    font-size: 9px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
  }

  .clarity-viz-description {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
    letter-spacing: 0.3px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1.4;
  }

  .clarity-viz-icon {
    flex-shrink: 0;
    opacity: 0.6;
  }

  /* Mobile specific */
  @media screen and (max-width: 749px) {
    .clarity-viz-panel-header {
      justify-content: center;
      align-items: center;
      text-align: center;
    }
    .clarity-viz-panel-header .clarity-viz-label,
    .clarity-viz-panel-header .clarity-viz-status {
      text-align: center;
    }
  }

  /* Tablet and up */
  @media screen and (min-width: 750px) {
    .clarity-viz-section {
      padding: 60px 40px;
    }

    .clarity-viz-heading {
      font-size: 38px;
    }

    .clarity-viz-subheading {
      font-size: 20px;
    }

    .clarity-viz-grid {
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }

    .clarity-viz-panel {
      padding: 32px;
    }

    .clarity-viz-label {
      font-size: 14px;
    }

    .clarity-viz-status {
      font-size: 11px;
    }

    .clarity-viz-canvas {
      padding: 24px;
      margin-bottom: 24px;
    }

    .clarity-viz-y-axis span {
      font-size: 11px;
    }

    .clarity-viz-x-axis span {
      font-size: 10px;
    }

    .clarity-viz-x-axis span:nth-child(2),
    .clarity-viz-x-axis span:nth-child(4),
    .clarity-viz-x-axis span:nth-child(6) {
      display: block;
    }

    .clarity-viz-legend {
      margin-top: 36px;
    }

    .clarity-viz-legend-item {
      font-size: 12px;
    }

    .clarity-viz-metrics {
      padding: 24px;
      gap: 20px;
    }

    .clarity-viz-metric {
      padding: 16px;
    }

    .clarity-viz-metric-label {
      font-size: 11px;
      margin-bottom: 10px;
    }

    .clarity-viz-metric-value {
      font-size: 30px;
    }

    .clarity-viz-metric-status {
      font-size: 10px;
    }

    .clarity-viz-description {
      font-size: 13px;
      padding: 14px 18px;
    }
  }

/* Desktop large */
@media screen and (min-width: 990px) {
  .clarity-viz-section {
    padding: 80px 40px;
{{ ... }}

  .clarity-viz-heading {
    font-size: 44px;
  }

  .clarity-viz-panel {
    padding: 36px;
  }

  .clarity-viz-canvas {
    padding: 28px;
  }

  .clarity-viz-metric-value {
    font-size: 32px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .clarity-viz-panel {
    transition: none;
  }
  
  .clarity-viz-panel:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }

  .clarity-viz-metric-value {
    transition: none;
    opacity: 1;
    transform: scale(1);
  }
}
