/* ============================================================
   AyE Lab · Testimonials page
   Builds on homepage/styles.css tokens + components.
   ============================================================ */

/* hero */
.tl-hero {
  padding-top: clamp(96px, 14vw, 158px);
  padding-bottom: clamp(40px, 6vw, 72px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tl-hero .inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 2; }
.tl-hero h1 {
  font-family: var(--f-head); font-weight: 900;
  font-size: clamp(2.5rem, 6.6vw, 4.4rem);
  letter-spacing: -.03em; line-height: 1.02;
  margin: 16px 0 18px;
}
.tl-hero h1 .gradient-text { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.tl-hero .lead { max-width: 44em; margin-inline: auto; }
.tl-stats {
  display: inline-flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 10px 22px; margin-top: 28px;
}
.tl-stats .s { display: inline-flex; align-items: baseline; gap: 7px; font-family: var(--f-head); }
.tl-stats .s b { font-weight: 900; font-size: 1.2rem; letter-spacing: -.02em; color: var(--ink); }
.tl-stats .s span { font-size: .82rem; color: var(--ink-faint); font-weight: 600; }
.tl-stats .sep { width: 1px; height: 22px; background: var(--line-2); }
.tl-stats .exams { display: inline-flex; gap: 7px; flex-wrap: wrap; justify-content: center; }
.tl-stats .exams i { font-family: var(--f-head); font-weight: 700; font-style: normal; font-size: .72rem; letter-spacing: .04em; color: var(--ink-soft); background: var(--surface); border: 1px solid var(--line-2); padding: .35em .7em; border-radius: 100px; }

/* list */
.tl-list { display: grid; gap: 18px; max-width: 820px; margin: 0 auto; }

.t-full {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--violet);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
  overflow: hidden;
}
.t-full:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.t-full.teal   { border-left-color: var(--teal); }
.t-full.gold   { border-left-color: var(--gold); }
.t-full.coral  { border-left-color: var(--coral); }
.t-full.aurora { border-left-color: var(--aurora); }

.t-full .qmark {
  position: absolute; top: 8px; right: 22px;
  font-family: var(--f-quote); font-style: italic;
  font-size: 6rem; line-height: 1; color: var(--surface-2);
  pointer-events: none; user-select: none; z-index: 0;
}

.t-top {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 15px;
  margin-bottom: 18px; flex-wrap: wrap;
}
.t-mono {
  flex: none; width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--f-head); font-weight: 800; font-size: 1rem;
  color: #fff; background: var(--grad-brand);
  box-shadow: 0 8px 20px -8px rgba(70,52,200,.6);
}
.t-full.teal   .t-mono { background: linear-gradient(135deg,#1ECBE1,#0BA8BD); box-shadow: 0 8px 20px -8px rgba(11,168,189,.6); }
.t-full.gold   .t-mono { background: linear-gradient(135deg,#E8C46A,#C9973A); color: #2A1E06; box-shadow: 0 8px 20px -8px rgba(201,151,58,.6); }
.t-full.coral  .t-mono { background: linear-gradient(135deg,#FF5BA0,#F72585); box-shadow: 0 8px 20px -8px rgba(247,37,133,.55); }
.t-full.aurora .t-mono { background: linear-gradient(135deg,#B98BFF,#7B4FE0); box-shadow: 0 8px 20px -8px rgba(123,79,224,.55); }

.t-id { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.t-name { font-family: var(--f-head); font-weight: 800; font-size: 1.12rem; letter-spacing: -.01em; color: var(--ink); line-height: 1.2; }
.t-role { font-family: var(--f-head); font-weight: 600; font-size: .86rem; color: var(--teal); line-height: 1.35; }
.t-full.gold   .t-role { color: var(--gold-deep); }
.t-full.coral  .t-role { color: #C01E6A; }
.t-full.aurora .t-role { color: var(--aurora); }

.t-score {
  margin-left: auto; align-self: flex-start;
  font-family: var(--f-head); font-weight: 700;
  font-size: .76rem; letter-spacing: .05em;
  color: var(--violet); background: rgba(89,63,224,.08);
  border: 1px solid rgba(89,63,224,.16);
  border-radius: 100px; padding: .5em 1em; white-space: nowrap;
}
.t-full.teal   .t-score { color: #0BA8BD; background: rgba(30,203,225,.08); border-color: rgba(30,203,225,.22); }
.t-full.gold   .t-score { color: var(--gold-deep); background: rgba(201,151,58,.1); border-color: rgba(201,151,58,.24); }
.t-full.coral  .t-score { color: #C01E6A; background: rgba(247,37,133,.07); border-color: rgba(247,37,133,.2); }
.t-full.aurora .t-score { color: var(--aurora); background: rgba(123,79,224,.08); border-color: rgba(123,79,224,.2); }

.t-quote {
  position: relative; z-index: 1;
  font-size: 1rem; color: var(--ink-soft); line-height: 1.82;
  text-wrap: pretty;
}
.t-quote + .t-quote { margin-top: 0; }

/* back strip */
.tl-back { text-align: center; margin-top: clamp(40px, 6vw, 64px); }

@media (min-width: 720px) {
  .t-score { font-size: .8rem; }
  .t-quote { font-size: 1.05rem; }
}
