.product-hero {
  min-height: 72vh;
}

.product-stage {
  position: relative;
  min-height: 560px;
  perspective: 1200px;
}

.floating-dashboard {
  position: absolute;
  width: min(440px, 78vw);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: 0 30px 90px var(--color-shadow);
  transform-style: preserve-3d;
  overflow: hidden;
}

.floating-dashboard:nth-child(1) {
  left: 5%;
  top: 20px;
  transform: rotateY(-18deg) rotateX(8deg);
}

.floating-dashboard:nth-child(2) {
  right: 4%;
  top: 150px;
  transform: rotateY(16deg) rotateX(6deg);
}

.floating-dashboard:nth-child(3) {
  left: 22%;
  bottom: 0;
  transform: rotateY(-8deg) rotateX(12deg);
}

.floating-dashboard header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
  border-bottom: 1px solid var(--color-border);
  padding: 0 14px;
  color: var(--color-text-muted);
  font-family: var(--font-ui);
  font-size: 13px;
}

.floating-dashboard .body {
  padding: 16px;
}

.gauge {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border: 10px solid var(--color-border);
  border-top-color: var(--color-primary);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 30px;
}

.module-map {
  position: relative;
  min-height: 430px;
}

.module-node {
  position: absolute;
  display: grid;
  width: 132px;
  height: 86px;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  color: var(--color-primary);
  font-family: var(--font-ui);
  font-weight: 600;
  text-align: center;
  box-shadow: 0 18px 60px var(--color-shadow);
}

.module-node.core {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 100px;
  color: var(--color-bg);
  background: var(--color-primary);
}

.comparison {
  overflow-x: auto;
}

.comparison table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.comparison th,
.comparison td {
  border-bottom: 1px solid var(--color-border);
  padding: 16px;
  text-align: left;
}

.comparison th {
  background: var(--color-surface-2);
  color: var(--color-primary);
  font-family: var(--font-ui);
}

.comparison tr {
  background: var(--color-surface);
  transition: background 0.25s ease;
}

.comparison tr:hover {
  background: var(--color-surface-2);
}

.mark-yes {
  color: var(--color-primary);
  font-weight: 700;
}

.mark-no {
  color: var(--color-text-muted);
}

@media (max-width: 900px) {
  .product-stage {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .floating-dashboard,
  .floating-dashboard:nth-child(1),
  .floating-dashboard:nth-child(2),
  .floating-dashboard:nth-child(3) {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    transform: none;
  }

}
