/* Liquid Ripple (CodePen #5) — brand teal + icons instead of bare orbs */

.lr-page {
  --lr-teal: var(--ca-teal, #42918b);
  --lr-teal-soft: color-mix(in srgb, var(--ca-teal, #42918b) 55%, #fff);
  --lr-ink: var(--ca-warm-black, #2a3855);
  background: var(--lr-ink);
  color: var(--ca-sand, #f5f0e8);
}

.lr-page .tp-layer--bg img {
  object-position: 58% 40%;
}

.lr-body {
  position: relative;
  z-index: 1;
  padding: 2.5rem 0 4.5rem;
  background:
    radial-gradient(ellipse 50% 40% at 10% 0%, rgba(66, 145, 139, 0.18), transparent 55%),
    radial-gradient(ellipse 40% 35% at 95% 40%, rgba(212, 175, 55, 0.08), transparent 50%),
    var(--lr-ink);
}

.lr-body__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.lr-grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2.5rem;
  column-gap: 1.75rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .lr-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.lr-card {
  position: relative;
  overflow: visible;
  border-radius: 1.15rem;
  padding: 1.65rem 1.5rem 1.75rem;
  margin: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.lr-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.14) 0%,
    transparent 42%
  );
  pointer-events: none;
  z-index: 0;
}

.lr-card > * {
  position: relative;
  z-index: 1;
}

.lr-card--wide {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
}

.lr-card--accent {
  background: color-mix(in srgb, var(--lr-teal) 18%, rgba(255, 255, 255, 0.06));
  border-color: color-mix(in srgb, var(--lr-teal) 45%, rgba(255, 255, 255, 0.2));
}

.lr-card__label {
  margin: 0.85rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
}

.lr-card h2 {
  margin: 0.35rem 0 0;
  font-family: var(--font-display, "Clash Display", sans-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
}

.lr-card > p {
  margin: 0.85rem 0 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--ca-sand, #f5f0e8) 82%, transparent);
}

.lr-orb {
  position: relative;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--lr-teal),
    color-mix(in srgb, var(--lr-ink) 55%, var(--lr-teal))
  );
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 20px color-mix(in srgb, var(--lr-teal) 40%, transparent);
}

.lr-orb svg {
  width: 1.45rem;
  height: 1.45rem;
  position: relative;
  z-index: 2;
}

/* CodePen #5 · Ripple — expanding ring from the orb */
.lr-orb::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: color-mix(in srgb, var(--lr-teal-soft) 55%, transparent);
  animation: lr-ripple 2s ease-out infinite;
  pointer-events: none;
  z-index: 1;
}

.lr-orb--delay-1::after { animation-delay: 0.35s; }
.lr-orb--delay-2::after { animation-delay: 0.7s; }
.lr-orb--delay-3::after { animation-delay: 1.05s; }

@keyframes lr-ripple {
  0% {
    transform: scale(0);
    opacity: 0.5;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.lr-list {
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.lr-list li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--ca-sand, #f5f0e8) 82%, transparent);
}

.lr-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--lr-teal);
}

.lr-badges {
  margin: 1.15rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.lr-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.92rem;
  line-height: 1.3;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.lr-badge__dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--lr-teal);
  flex-shrink: 0;
}

.lr-badge--gold .lr-badge__dot {
  background: var(--ca-gold, #d4af37);
}

.lr-stats {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .lr-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.lr-stat {
  padding: 0.85rem 0.75rem;
  border-radius: 0.75rem;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.lr-stat__value {
  margin: 0;
  font-family: var(--font-display, "Clash Display", sans-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: #fff;
}

.lr-stat__label {
  margin: 0.25rem 0 0;
  font-size: 0.78rem;
  opacity: 0.6;
  line-height: 1.35;
}

.lr-page + .lp-cta-band {
  position: relative;
  z-index: 2;
  background: color-mix(in srgb, var(--lr-ink) 88%, #000);
  border-top: 1px solid color-mix(in srgb, var(--ca-sand, #f5f0e8) 8%, transparent);
}

@media (prefers-reduced-motion: reduce) {
  .lr-orb::after {
    animation: none !important;
    opacity: 0.25;
    transform: scale(1.35);
  }
}
