/* RoboREST hero A — product shelf */
.rr-hero {
  padding: clamp(2.5rem, 5vw, 4.25rem) 0;
}
.rr-hero__brand {
  margin: 0 0 0.65rem;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #CA2F5D;
}
.rr-hero__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  font-weight: 700;
  line-height: 1.22;
  color: #111111;
}
.rr-hero__text {
  margin: 0 0 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #4a4a4a;
  max-width: 40rem;
}
.rr-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 0.85rem;
}
.rr-hero__note {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #6b6b6b;
  max-width: 40rem;
}
.rr-hero-a {
  background:
    radial-gradient(900px 400px at 90% 0%, rgba(202, 47, 93, 0.1), transparent 55%),
    linear-gradient(135deg, #ffffff 0%, #f8f7f8 100%);
}
.rr-hero-a__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}
.rr-hero-a__copy {
  flex: 1 1 280px;
  max-width: 480px;
}
.rr-hero-a__shelf {
  flex: 1 1 300px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 480px;
  margin-left: auto;
}
.rr-hero-a__tile {
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.rr-hero-a__tile:hover {
  border-color: rgba(202, 47, 93, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(202, 47, 93, 0.1);
}
.rr-hero-a__tile-kind {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.15rem 0.45rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #CA2F5D;
  background: rgba(202, 47, 93, 0.08);
  border-radius: 999px;
}
.rr-hero-a__tile-title {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #111111;
}
.rr-hero-a__tile-text {
  margin: 0;
  font-size: 0.8125rem;
  color: #4a4a4a;
  line-height: 1.45;
}
@media (max-width: 720px) {
  .rr-hero-a__shelf {
    margin-left: 0;
    max-width: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .rr-hero-a__tile:hover {
    transform: none;
  }
}
