/* ── Founders Wrong — exact original CSS ────────────────── */
.founders-wrong {
  padding: 100px 0;
  background: #030410;
}

/* Flex container */
.founders-wrong-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Left text col */
.founders-text {
  flex: 1;
}

/* Title: clamp(32px,4vw,46px) weight 800 — gradient via .gradient-text */
.founders-wrong__title {
  font-family: "Inter", sans-serif;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #fff;
}

/* Subtitle: 16px muted */
.founders-wrong__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: rgba(139, 148, 158, 1);
  line-height: 1.7;
  margin: 0 0 50px;
  max-width: 540px;
}

/* Pills: 12px muted, 8px 18px padding, 999px radius */
.pills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 36px;
}
.pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 18px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: rgba(139, 148, 158, 1);
  transition:
    border-color 0.2s,
    color 0.2s;
  cursor: default;
}
.pill:hover {
  border-color: #00c3d0;
  color: #00c3d0;
}

/* CTA button — white fill */
.founders-wrong-cta {
  margin-top: 8px;
}

/* Right video col */
.founders-video {
  flex: 1;
  position: relative;
}

/* Video placeholder box */
.video-placeholder {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.bg-dna {
  width: 100%;
  display: block;
  opacity: 0.6;
}
/* Empty state */
.video-placeholder-empty {
  width: 100%;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Play button: 60×60 white circle, centered absolute */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  border: none;
}
.video-placeholder-empty .play-btn {
  position: static;
  transform: none;
}
.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 194, 212, 0.3);
}
.video-placeholder-empty .play-btn:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1024px) {
  .founders-wrong-container {
    flex-direction: column;
  }
  .founders-video {
    width: 100%;
    order: -1;
  }
}
@media (max-width: 768px) {
  .founders-wrong {
    padding: 64px 0;
  }
  .pill {
    font-size: 11px;
    padding: 7px 14px;
  }
}
