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

.floating-product img {
  width: 100%;
  height: auto;
  filter: none;
  will-change: transform;
}

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

/* Hero section stays behind the product */
.product-hero {
  position: relative;
  z-index: 50;
}

/* Subsequent sections pass in front of the product */
.product-features,
.split-panel-section,
.blueprint-section,
.product-applications,
.bottom-cta-banner,
.section,
.comparison-section {
  position: relative;
  z-index: 200;
}

/* Glass effect for Comparison Section to see product behind */
.comparison-section {
  background: rgba(0, 0, 0, 0.2) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 100px 0;
}

/* 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: 2100;
  /* Higher than .floating-product (2000) */
  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;
}