/* ===== INTERACTIVE COMPONENTS ===== */

/* --- Before/After Image Comparison Slider --- */
[data-compare] {
  position: relative;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  border-radius: 12px;
}

[data-compare] img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.compare-before,
.compare-after {
  position: relative;
}

.compare-after {
  position: absolute;
  inset: 0;
  clip-path: inset(0 50% 0 0);
}

.compare-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-label {
  position: absolute;
  bottom: 12px;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 4px;
  pointer-events: none;
}

.compare-before .compare-label {
  right: 12px;
}

.compare-after .compare-label {
  left: 12px;
}

.compare-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: #fff;
  transform: translateX(-50%);
  cursor: ew-resize;
  z-index: 2;
  touch-action: none;
}

.compare-handle::before,
.compare-handle::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border: 6px solid transparent;
}

.compare-handle::before {
  top: 50%;
  margin-top: -18px;
  border-bottom: 8px solid #fff;
}

.compare-handle::after {
  top: 50%;
  margin-top: 4px;
  border-top: 8px solid #fff;
}

.compare-handle-grip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare-handle-grip::before,
.compare-handle-grip::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  transform: translateY(-50%);
}

.compare-handle-grip::before {
  left: 4px;
  border-right: 6px solid #333;
}

.compare-handle-grip::after {
  right: 4px;
  border-left: 6px solid #333;
}

.compare-handle:focus-visible {
  outline: 2px solid #4d90fe;
  outline-offset: 2px;
}


/* --- Stat Counters --- */
.stat-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-value {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.7;
  text-align: center;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 6vw, 5rem);
  padding: 2rem 0;
}


/* --- Annotated Image Hotspots --- */
.annotated-image {
  position: relative;
  display: inline-block;
}

.annotated-image img {
  display: block;
  width: 100%;
  height: auto;
}

.hotspot {
  position: absolute;
  width: 28px;
  height: 28px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.hotspot-dot {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.hotspot:hover .hotspot-dot,
.hotspot:focus-visible .hotspot-dot {
  transform: translate(-50%, -50%) scale(1.2);
}

.hotspot-pulse {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  animation: hotspot-pulse 2s ease-out infinite;
}

@keyframes hotspot-pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

.hotspot:focus-visible {
  outline: 2px solid #4d90fe;
  outline-offset: 2px;
  border-radius: 50%;
}

.annotation-tooltip {
  position: absolute;
  z-index: 10;
  background: #fff;
  color: #1a1a1a;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  font-size: 0.85rem;
  line-height: 1.5;
  max-width: 260px;
  pointer-events: auto;
  transform-origin: bottom center;
}

.annotation-tooltip[hidden] {
  display: none;
}

.annotation-tooltip p {
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .hotspot-pulse {
    animation: none;
  }
}


/* --- Line Chart --- */
.chart-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  border-radius: 12px;
  padding: clamp(1.5rem, 4vw, 3rem);
  width: 100%;
  box-sizing: border-box;
}

.line-chart {
  width: 100%;
  height: auto;
}

.chart-label {
  font-family: inherit;
  font-size: 11px;
  fill: #999;
  font-weight: 400;
}

.chart-caption {
  font-family: inherit;
  font-size: 12px;
  fill: #999;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.chart-line {
  stroke-dasharray: var(--chart-length, 1000);
  stroke-dashoffset: var(--chart-length, 1000);
}

.chart-card.chart-animated .chart-line {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.chart-area {
  opacity: 0;
}

.chart-card.chart-animated .chart-area {
  opacity: 1;
  transition: opacity 0.8s ease 0.4s;
}

.chart-dots circle {
  transform: scale(0);
  transform-origin: center;
  transform-box: fill-box;
}

.chart-card.chart-animated .chart-dots circle {
  transform: scale(1);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.chart-card.chart-animated .chart-dots circle:nth-child(1) { transition-delay: 0.15s; }
.chart-card.chart-animated .chart-dots circle:nth-child(2) { transition-delay: 0.35s; }
.chart-card.chart-animated .chart-dots circle:nth-child(3) { transition-delay: 0.55s; }
.chart-card.chart-animated .chart-dots circle:nth-child(4) { transition-delay: 0.75s; }
.chart-card.chart-animated .chart-dots circle:nth-child(5) { transition-delay: 0.95s; }
.chart-card.chart-animated .chart-dots circle:nth-child(6) { transition-delay: 1.15s; }
.chart-card.chart-animated .chart-dots circle:nth-child(7) { transition-delay: 1.3s; }

@media (prefers-reduced-motion: reduce) {
  .chart-line {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
  }
  .chart-area { opacity: 1; }
  .chart-dots circle { transform: scale(1); }
}


/* --- Competitive Analysis Map --- */
.cs-visual--competitive {
  background: #f8f8f8;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.comp-map {
  padding: clamp(1rem, 3vw, 2.5rem) clamp(0.75rem, 2vw, 1.5rem) 0;
}

.comp-map__svg {
  width: 100%;
  height: auto;
  display: block;
}

.comp-map__axis-label {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 10px;
  fill: #999;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.comp-map__dot {
  will-change: transform, opacity;
}

.comp-map__dot circle {
  transform-origin: center center;
  transform-box: fill-box;
}

.comp-map__dot-label {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 11px;
  font-weight: 500;
  fill: #fff;
}

.comp-map__name {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 11px;
  font-weight: 400;
  fill: #767676;
}

.comp-map__zone-label {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 11px;
  font-weight: 500;
  fill: #0FA958;
}

/* Gap cards */
.comp-gaps {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 clamp(1rem, 3vw, 2.5rem) clamp(1rem, 2vw, 1.5rem);
}

.comp-gap-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-top: 0.5px solid #e5e5e5;
}

.comp-gap-card__number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2b2b2b;
  color: #fff;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comp-gap-card__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.comp-gap-card__title {
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #2b2b2b;
  margin: 0;
  line-height: 1.4;
}

.comp-gap-card__desc {
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: #767676;
  line-height: 1.5;
  margin: 0;
}

/* Caption */
.comp-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 8px 10px;
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

@media (hover: hover) {
  .cs-visual--competitive:hover .comp-caption {
    opacity: 1;
  }
}

@media (hover: none) {
  .comp-caption {
    opacity: 1;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .comp-map__dot,
  .comp-map__dot circle,
  .comp-map__dot .comp-map__dot-label,
  .comp-map__zone rect,
  .comp-map__zone-label,
  .comp-map__name,
  .comp-gap-card {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .comp-map__axis-label {
    font-size: 9px;
  }

  .comp-map__dot-label {
    font-size: 10px;
  }

  .comp-map__name {
    font-size: 9px;
  }

  .comp-gap-card {
    padding: 12px 0;
    gap: 10px;
  }

  .comp-gap-card__number {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .comp-gap-card__title {
    font-size: 13px;
  }

  .comp-gap-card__desc {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .comp-map {
    padding: 0.75rem 0.5rem 0;
  }

  .comp-gaps {
    padding: 0 0.75rem 0.75rem;
  }

  .comp-map__axis-label {
    font-size: 8px;
  }
}


/* --- Design Evolution Stepper --- */
[data-design-evolution] {
  background: #f8f8f8;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.evolution-tabs {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 10px 12px 0;
  position: relative;
}

.evolution-tab {
  flex: 1;
  padding: 10px 8px;
  border: none;
  background: none;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #999;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: color 0.25s ease;
  text-align: center;
  border-radius: 6px 6px 0 0;
}

.evolution-tab:hover {
  color: #555;
}

.evolution-tab.active {
  color: #2b2b2b;
}

.evolution-tab-indicator {
  position: absolute;
  bottom: 0;
  left: 12px;
  height: 2px;
  background: #2b2b2b;
  border-radius: 1px;
  transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.evolution-viewport {
  position: relative;
  overflow: hidden;
}

.evolution-stage {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.evolution-stage.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.evolution-stage img {
  display: block;
  width: 100%;
  height: auto;
}

.evolution-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
  padding: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  transition: background 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
  color: #2b2b2b;
}

.evolution-arrow--prev { left: 12px; }
.evolution-arrow--next { right: 12px; }

.evolution-arrow svg {
  width: 14px;
  height: 14px;
  display: block;
}

.evolution-arrow:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.05);
}

.evolution-arrow:disabled {
  opacity: 0;
  cursor: default;
  pointer-events: none;
}

.evolution-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px 4px;
}

.evolution-counter {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #999;
  letter-spacing: 0.04em;
}

.evolution-captions {
  padding: 0 clamp(1rem, 3vw, 2rem) clamp(1rem, 2vw, 1.5rem);
  min-height: 2.5em;
  position: relative;
}

.evolution-caption {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #767676;
  line-height: 1.5;
  position: absolute;
  top: 0;
  left: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.evolution-caption.active {
  position: relative;
  left: auto;
  right: auto;
  opacity: 1;
  pointer-events: auto;
}

/* Mobile */
@media (max-width: 768px) {
  .evolution-tab {
    font-size: 12px;
    padding: 8px 4px;
  }

  .evolution-arrow {
    width: 30px;
    height: 30px;
  }

  .evolution-arrow svg {
    width: 12px;
    height: 12px;
  }

  .evolution-caption {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .evolution-tabs {
    padding: 8px 8px 0;
  }

  .evolution-tab {
    font-size: 11px;
    padding: 7px 2px;
  }

  .evolution-tab-indicator {
    left: 8px;
  }

  .evolution-arrow--prev { left: 6px; }
  .evolution-arrow--next { right: 6px; }

  .evolution-captions {
    padding: 0 0.75rem 0.75rem;
  }

  .evolution-caption {
    left: 0.75rem;
    right: 0.75rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .evolution-stage {
    transition: none;
  }

  .evolution-tab-indicator {
    transition: none;
  }

  .evolution-caption {
    transition: none;
  }

  .evolution-arrow {
    transition: none;
  }
}


/* =============================================
   Phone Mockup Interactive Component
   ============================================= */

[data-phone-mockup] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.phone-frame {
  position: relative;
  width: 280px;
  aspect-ratio: 9 / 19.5;
  border-radius: 40px;
  background: #000;
  padding: 8px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.08),
    0 20px 60px -10px rgba(0, 0, 0, 0.18),
    0 8px 24px -6px rgba(0, 0, 0, 0.12);
  margin: 0 auto;
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #000;
  border-radius: 0 0 16px 16px;
  z-index: 10;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #f8f8f8;
}

.phone-view {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  will-change: opacity;
}

.phone-view.active {
  opacity: 1;
  pointer-events: auto;
}

.phone-view img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.phone-hotspot {
  position: absolute;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 5;
  border-radius: 8px;
  transition: background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.phone-hotspot:hover,
.phone-hotspot:focus-visible {
  background: rgba(74, 111, 220, 0.12);
}

.phone-hotspot:focus-visible {
  outline: 2px solid rgba(74, 111, 220, 0.5);
  outline-offset: 1px;
}

.phone-hotspot:active {
  background: rgba(74, 111, 220, 0.2);
}

.phone-hotspot--profile {
  top: 5%;
  right: 1%;
  width: 14%;
  height: 5%;
  border-radius: 50%;
}

.phone-hotspot--product {
  top: 66%;
  left: 2%;
  right: 2%;
  height: 30%;
  border-radius: 12px;
}

.phone-hotspot--back {
  top: 5%;
  right: 1%;
  width: 24%;
  height: 5%;
  border-radius: 8px;
}

.phone-hotspot--back-account {
  top: 5%;
  left: 1%;
  width: 16%;
  height: 5%;
  border-radius: 8px;
}

.phone-hint {
  font-size: 0.8125rem;
  color: #999;
  text-align: center;
  margin: 0;
  transition: opacity 0.4s ease;
}

.phone-hint.hidden {
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 600px) {
  .phone-frame {
    width: 320px;
    border-radius: 44px;
    padding: 10px;
  }

  .phone-notch {
    top: 10px;
    width: 100px;
    height: 24px;
  }

  .phone-screen {
    border-radius: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .phone-view {
    transition: none;
  }

  .phone-hint {
    transition: none;
  }
}


/* --- User Research Findings --- */
[data-research-findings] {
  background: #f8f8f8;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  overflow: hidden;
  container-type: inline-size;
}

.research-findings__intro {
  background: #ffffff;
  border: 0.5px solid #e5e5e5;
  border-radius: 10px;
  padding: clamp(1rem, 2vw, 1.35rem) clamp(1rem, 2.5vw, 1.5rem);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.research-findings__eyebrow {
  display: block;
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: #2b2b2b;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
}

.research-findings__intro p {
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: #767676;
  line-height: 1.6;
  margin: 0;
}

.research-findings__map {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: clamp(0.85rem, 1.8vw, 1.25rem);
  position: relative;
}

.research-findings__group {
  background: #ffffff;
  border: 0.5px solid #e5e5e5;
  border-radius: 12px;
  padding: clamp(1rem, 2vw, 1.25rem);
  min-height: 100%;
  position: relative;
}

.research-findings__group::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -1.35rem;
  width: 1px;
  height: 1.35rem;
  background: #d8d8d8;
  transform: translateX(-50%);
}

.research-findings__group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.research-findings__group-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2b2b2b;
  color: #ffffff;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
}

.research-findings__group-name {
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 2vw, 20px);
  color: #2b2b2b;
  letter-spacing: -0.02em;
  margin: 0;
}

.research-findings__rows {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.research-findings__row {
  background: rgba(0, 0, 0, 0.035);
  border: 0.5px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  display: grid;
  gap: 0.35rem;
  padding: 0.85rem;
}

.research-findings__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #2b2b2b;
  line-height: 1.3;
}

.research-findings__label::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4A90D9;
  flex: 0 0 auto;
}

.research-findings__desc {
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: #767676;
  line-height: 1.5;
  margin: 0;
}

.research-findings__connector {
  align-items: center;
  display: flex;
  height: 1.6rem;
  justify-content: center;
  position: relative;
}

.research-findings__connector::before {
  content: '';
  width: min(72%, 520px);
  height: 1px;
  background: linear-gradient(90deg, transparent, #d8d8d8 14%, #d8d8d8 86%, transparent);
}

.research-findings__connector::after {
  content: '';
  position: absolute;
  bottom: -0.2rem;
  left: 50%;
  width: 1px;
  height: 1rem;
  background: #d8d8d8;
  transform: translateX(-50%);
}

.research-findings__response {
  background: #2b2b2b;
  border-radius: 12px;
  color: #ffffff;
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2.5vw, 1.35rem);
}

.research-findings__response-label {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.research-findings__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.research-findings__chip {
  background: rgba(255, 255, 255, 0.1);
  border: 0.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffffff;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  padding: 0.65rem 0.85rem;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .research-findings__intro,
  .research-findings__group,
  .research-findings__row,
  .research-findings__connector,
  .research-findings__response,
  .research-findings__chip {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .research-findings__map {
    grid-template-columns: 1fr;
  }

  .research-findings__group::after,
  .research-findings__connector {
    display: none;
  }

  .research-findings__group-header {
    margin-bottom: 0.85rem;
  }
}

@container (max-width: 720px) {
  .research-findings__map {
    grid-template-columns: 1fr;
  }

  .research-findings__group::after,
  .research-findings__connector {
    display: none;
  }
}

/* Mobile */
@media (max-width: 480px) {
  [data-research-findings] {
    padding: 1rem;
  }

  .research-findings__label,
  .research-findings__desc,
  .research-findings__intro p,
  .research-findings__chip {
    font-size: 12px;
  }

  .research-findings__group-name {
    font-size: 16px;
  }

  .research-findings__chips {
    align-items: stretch;
    flex-direction: column;
  }

  .research-findings__chip {
    text-align: center;
  }
}
