.page-hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(30,95,168,0.1) 0%, transparent 70%);
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    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: 60px 60px;
}
.page-hero-content { position: relative; z-index: 2; max-width: 680px; }
.page-hero h1 { margin-bottom: 20px; letter-spacing: -0.02em; }
.page-hero .sub { font-size: 1.1rem; color: var(--text-muted); }

/* ── Product Hero Cards ── */
.products-section { padding: 80px 0; }

.product-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 48px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.product-block:hover {
  border-color: var(--border-blue);
  box-shadow: var(--glow);
}
.product-block.reverse { direction: rtl; }
.product-block.reverse > * { direction: ltr; }

.product-info {
  background: var(--navy-mid);
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
}
.status-dot.active { background: #22c55e; box-shadow: 0 0 8px rgba(34,197,94,0.5); }
.status-dot.development { background: var(--blue-light); box-shadow: 0 0 8px rgba(42,123,200,0.5); }
.status-dot.preview { background: #f59e0b; box-shadow: 0 0 8px rgba(245,158,11,0.5); }

.product-info h2 { font-size: 2rem; margin-bottom: 16px; }
.product-info .tagline {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.65;
}

.product-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }

.product-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.coming-soon-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

.product-visual {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Abstract visual for AutoImm */
.autoImm-visual {
  background: linear-gradient(135deg, var(--navy) 0%, #0e2f52 100%);
}

.visual-diagram {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG diagram for each product */
.product-svg {
  width: 100%;
  max-width: 360px;
  opacity: 0.85;
}

/* ── Homelab Visual ── */
.homelab-visual {
  background: linear-gradient(135deg, var(--navy) 0%, #0a1e10 100%);
}

/* ── Feature grid inside product card ── */
.product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.pf-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--text-muted);
}
.pf-item::before {
  content: '—';
  color: var(--blue-light);
  flex-shrink: 0;
  font-weight: 700;
}

/* ── Roadmap strip ── */
.roadmap-strip {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
}

.roadmap-track {
  position: relative;
  margin-top: 56px;
}
.roadmap-line {
  position: absolute;
  top: 16px; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}
.roadmap-line-fill {
  position: absolute;
  top: 16px; left: 0;
  height: 1px;
  width: 40%;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
}

.roadmap-stops {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.roadmap-stop {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 0;
}
.r-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--navy-mid);
  z-index: 1;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.r-dot.done { border-color: var(--blue); background: var(--blue); }
.r-dot.current {
  border-color: var(--blue-light);
  background: var(--navy-mid);
  box-shadow: 0 0 10px rgba(42,123,200,0.5);
}
.r-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--grey-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.r-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }
.r-dot.done + .r-label, .r-dot.current + .r-label { color: var(--steel); }

@media (max-width: 900px) {
  .product-block { grid-template-columns: 1fr; }
  .product-block.reverse { direction: ltr; }
  .product-visual { min-height: 240px; order: -1; }
  .roadmap-stops { grid-template-columns: 1fr 1fr; gap: 24px; }
  .roadmap-line, .roadmap-line-fill { display: none; }
}
@media (max-width: 640px) {
  .product-info { padding: 36px 28px; }
  .product-features { grid-template-columns: 1fr; }
}
