/* Testimonials section */
.testimonials {
  width: 100%;
  padding: 64px 0 56px;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, rgba(255,255,255,.015), transparent 60%);
}
.testimonials__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.testimonials__head {
  text-align: center;
  margin: 0 auto 40px;
  max-width: 720px;
}
.testimonials__eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin: 0 0 12px;
}
.testimonials__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  letter-spacing: -.01em;
  margin: 0 0 12px;
  color: #f5f5f4;
}
.testimonials__sub {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,.65);
  margin: 0;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  align-items: stretch;
}
.testimonial {
  position: relative;
  margin: 0;
  padding: 28px 24px 24px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.025);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color .18s ease, background .18s ease;
}
.testimonial:hover {
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
}
.testimonial__mark {
  position: absolute;
  top: 6px;
  left: 16px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 56px;
  line-height: 1;
  color: rgba(255,255,255,.18);
  font-style: italic;
  pointer-events: none;
}
.testimonial__quote {
  margin: 8px 0 0;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(245,245,244,.92);
  letter-spacing: -.005em;
}
.testimonial__cite {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.testimonial__name {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #f5f5f4;
  letter-spacing: -.005em;
}
.testimonial__role {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
@media (max-width: 720px) {
  .testimonials { padding: 48px 0 40px; }
  .testimonials__grid { gap: 14px; }
  .testimonial { padding: 24px 20px 20px; }
  .testimonial__quote { font-size: 16px; }
}

/* Light theme support */
[data-theme="light"] .testimonials {
  border-color: rgba(0,0,0,.08);
  background: linear-gradient(180deg, rgba(0,0,0,.02), transparent 60%);
}
[data-theme="light"] .testimonial {
  border-color: rgba(0,0,0,.10);
  background: rgba(0,0,0,.02);
}
[data-theme="light"] .testimonial:hover {
  border-color: rgba(0,0,0,.18);
  background: rgba(0,0,0,.04);
}
[data-theme="light"] .testimonial__mark { color: rgba(0,0,0,.18); }
[data-theme="light"] .testimonial__quote { color: rgba(20,20,20,.92); }
[data-theme="light"] .testimonial__name { color: #141414; }
[data-theme="light"] .testimonial__role { color: rgba(0,0,0,.55); }
[data-theme="light"] .testimonial__cite { border-top-color: rgba(0,0,0,.08); }
[data-theme="light"] .testimonials__title { color: #141414; }
[data-theme="light"] .testimonials__sub { color: rgba(0,0,0,.7); }
[data-theme="light"] .testimonials__eyebrow { color: rgba(0,0,0,.6); }
