
/* Floating Product Animation Wrapper */
.floating-product {
  position: fixed;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 35vw;
  max-width: 500px;
  z-index: 2000;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-product img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.9));
  will-change: transform;
}

.product-placeholder {
  width: 100%;
  height: 500px; /* Adjust to match the product size */
}

/* Ensure sections have enough relative space for the product to "visit" them */
.product-hero, .product-features, .split-panel-section {
  position: relative;
}

/* Adjust Step 2 in Workflow to be a landing spot */
.step-item.target-step {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.step-item.target-step .step-icon {
  opacity: 0; /* The floating product will sit here */
}

/* Blueprint Section Styling */
.blueprint-section {
  padding: 0 !important;
  margin-top: 100px;
  overflow: hidden;
  position: relative;
}

.blueprint-bg {
  position: relative;
  background-color: #0a0e14;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blueprint-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.4;
}

.blueprint-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: 60px;
}

.blueprint-info h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.blueprint-data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.data-item h3 {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.data-item p {
  font-size: 0.9rem;
  color: #ccc;
}

