/* TryoutPro product-level visual accents layered on top of shared neutral styles. */
:root {
  --tp-accent: #ff6f3d;
  --tp-accent-soft: #fff2ec;
  --tp-deep: #1f2f52;
}

.tp-card {
  position: relative;
  overflow: hidden;
}

.tp-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 170px;
  background: linear-gradient(130deg, #ffe1d4 0%, #ffd2be 42%, #f7ddff 100%);
  opacity: 0.8;
  pointer-events: none;
}

.tp-hero {
  position: relative;
  z-index: 1;
}

.tp-hero h1 {
  color: var(--tp-deep);
}

.tp-lede {
  font-size: 1.08rem;
  max-width: 65ch;
}

.tp-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.tp-stat {
  border: 1px solid #f2c7b6;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  padding: 10px 12px;
}

.tp-stat strong {
  display: block;
  font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  color: #803816;
}

.tp-stat span {
  color: #6a4c3f;
  font-size: 0.92rem;
}

.tp-nav a {
  border-color: #f0c7b8;
}

.tp-nav a:hover {
  border-color: #e58b68;
  box-shadow: 0 8px 16px rgba(214, 99, 43, 0.15);
}

.tp-note {
  border-left: 4px solid var(--tp-accent);
  background: var(--tp-accent-soft);
  padding: 10px 12px;
  border-radius: 8px;
  color: #6b3a23;
}
