/* =============================================================
   REVIEWS
   ============================================================= */
.reviews-flow {
  background: linear-gradient(180deg, #0b0b0b 0%, #060606 100%);
  border-top: 1px solid rgba(255,255,255,.08);
}
.reviews-panel { text-align: center; }
.reviews-panel .stars { font-size: 1.3rem; margin-bottom: 8px; }
.stars { color: var(--yellow); letter-spacing: .12em; }
.review-shell { display: grid; grid-template-columns: 44px 1fr 44px; gap: 18px; align-items: center; margin-top: 34px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 34px 30px;
  min-height: 300px;
  border: 1px solid rgba(255,212,0,.3);
  border-radius: 6px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255,212,0,.16), transparent 34%),
    linear-gradient(145deg, rgba(24,24,25,.92), rgba(7,7,8,.96));
  box-shadow: 0 26px 70px rgba(0,0,0,.46), 0 0 0 1px rgba(255,212,0,.08) inset;
  text-align: left;
  animation: reviewFloat 7s ease-in-out infinite;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.review-card:nth-child(2) { animation-delay: -1.8s; }
.review-card:nth-child(3) { animation-delay: -3.6s; }
.review-card:nth-child(4) { animation-delay: -5.1s; }
.review-card:nth-child(5) { animation-delay: -2.6s; }
.review-card:nth-child(6) { animation-delay: -6.3s; }
.review-card:hover,
.review-card:focus-within {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(255,212,0,.76);
  box-shadow: 0 34px 90px rgba(0,0,0,.55), 0 0 34px rgba(255,212,0,.2);
}
.review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 12%, rgba(255,255,255,.14) 28%, transparent 44%);
  transform: translateX(-130%);
  animation: reviewSheen 8s ease-in-out infinite;
}
.review-card::after {
  content: "”";
  position: absolute;
  right: 18px;
  top: -22px;
  color: rgba(255,212,0,.12);
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
}
.review-kicker {
  display: block;
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.review-score {
  display: grid;
  gap: 8px;
  margin: 14px 0 20px;
}
.review-score strong {
  display: block;
  color: #fff;
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 2.6vw, 2.7rem);
  line-height: 1;
  text-transform: uppercase;
  overflow-wrap: break-word;
}
.review-score .stars { font-size: 1.05rem; }
.review-card .stars { display: block; font-size: 1.05rem; margin-bottom: 16px; }
.review-card blockquote {
  position: relative;
  margin: 0 0 22px;
  color: #f2f2f2;
  font-size: 1.08rem;
  line-height: 1.5;
}
.review-card p { margin: 0; color: #fff; font-weight: 700; }
.review-card .review-meta {
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .02em;
}
.review-card a { color: var(--yellow); text-decoration: underline; text-underline-offset: 4px; }
.slider-arrow { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.04); color: #fff; font-size: 1.8rem; cursor: pointer; transition: border-color .18s, color .18s, transform .18s; }
.slider-arrow:hover { color: var(--yellow); border-color: var(--yellow); transform: scale(1.06); }

@keyframes reviewFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes reviewSheen {
  0%, 30%, 100% { transform: translateX(-130%); opacity: 0; }
  44% { opacity: .75; }
  62% { transform: translateX(135%); opacity: 0; }
}

/* The carousel (one card visible at a time) only runs below the 901px
   breakpoint used by main.js's isDesktop() check, so the arrows should
   only ever be shown there — otherwise they sit on the desktop grid
   (all 3 cards already visible) doing nothing when clicked. */
@media (min-width: 901px) {
  .slider-arrow { display: none; }
  .review-shell {
    display: block;
  }
}
