/* Visuals shared by the general and SaaS landing pages. */
.hero-visual {
  grid-column: 2;
  grid-row: 1 / 3;
  min-width: 0;
  align-self: center;
}
.visual-heading {
  color: #bccdc1;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.hero-journey {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  padding: 14px 18px;
  color: var(--mint);
  background: #ffffff08;
  border: 1px solid #a8f0bc30;
  border-radius: 8px;
  font-size: .8125rem;
  font-weight: 600;
}
.hero-journey [aria-hidden] { opacity: .55; }
.hero-visual .product-image { box-shadow: 0 22px 70px #0004; }
.screen-zoom img { object-position: top; }
.hero-visual figcaption {
  margin-top: 16px;
  color: #bccdc1;
  font-size: .75rem;
  line-height: 1.7;
}
.segments-section { background: var(--soft); border-bottom: 1px solid var(--line); }
.segment-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }
.segment-card { display: flex; flex-direction: column; align-items: flex-start; border-top: 1px solid #9eafa4; padding-top: 24px; }
.segment-card .feature-number { margin-bottom: 18px; }
.segment-card h3 { font-size: 1.3rem; }
.segment-card p { margin-block: 16px 24px; color: var(--muted); font-size: .9375rem; line-height: 1.8; }
.segment-card .text-link { margin-top: auto; font-size: .8125rem; gap: 8px; }
.traffic-section { border-block: 1px solid var(--line); background: var(--soft); }
.traffic-section .story-panel { margin: 0; }
.traffic-section .product-copy h2 { font-size: clamp(2rem, 3vw, 2.8rem); }
.traffic-section .product-copy .traffic-note { font-size: .8125rem; line-height: 1.7; }
@media (max-width: 1100px) {
  .segment-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px; }
}
@media (max-width: 760px) {
  .hero-visual { grid-column: 1; grid-row: 2; width: 100%; }
  .hero-journey { padding: 12px; gap: 8px; font-size: .75rem; }
  .visual-heading { font-size: .6875rem; }
  .segment-grid { gap: 28px 20px; }
  .segment-card h3 { font-size: 1.125rem; }
  .segment-card p { font-size: .875rem; }
}
@media (max-width: 480px) {
  .segment-grid { grid-template-columns: 1fr; }
  .segment-card { padding-top: 20px; }
  .segment-card h3 { font-size: 1.4rem; }
  .segment-card p { margin-block: 12px 18px; }
}
@media print {
  .hero-visual { margin-block: 24px; }
  .hero-journey, .visual-heading, .hero-visual figcaption { color: #333; }
}
