/**
 * Parasites directory + single profiles.
 */

.par-page {
  --par-lime: #a8c73a;
  --par-leaf: #2f6b32;
  --par-ink: #1a1a1a;
  --par-muted: #5c6350;
  --par-cream: #fafaf7;
  --par-mist: #f0f5e6;
  background: var(--par-cream);
}

/* Hero */
.par-hero {
  position: relative;
  padding: clamp(2.75rem, 7vw, 4.75rem) 0;
  background: linear-gradient(155deg, #0c140e 0%, #1a3d22 48%, #2f6b32 100%);
  color: #fff;
  overflow: hidden;
  text-align: center;
}
.par-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 20% 20%, rgba(168,199,58,0.22), transparent 55%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(47,107,50,0.35), transparent 50%);
  pointer-events: none;
}
.par-hero__inner { position: relative; z-index: 1; max-width: 44rem; margin-inline: auto; }
.par-hero .breadcrumbs {
  justify-content: center;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
}
.par-hero .breadcrumbs a { color: rgba(255,255,255,0.85); text-decoration: none; }
.par-hero__eyebrow {
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--par-lime); margin: 0 0 0.75rem;
}
.par-hero__title {
  font-family: var(--font-display, Outfit, system-ui, sans-serif);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.03em; margin: 0 0 0.85rem; color: #fff;
}
.par-hero__lead {
  margin: 0 auto 1.35rem; max-width: 36rem;
  color: rgba(255,255,255,0.8); line-height: 1.65; font-size: 1.05rem;
}
.par-search {
  display: flex; flex-wrap: wrap; gap: 0.55rem; justify-content: center;
  max-width: 32rem; margin-inline: auto;
}
.par-search input {
  flex: 1 1 14rem;
  border: none; border-radius: 999px;
  padding: 0.85rem 1.15rem;
  font: inherit; min-width: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.par-search .btn { border-radius: 999px; }

/* Directory */
.par-directory { padding-top: clamp(2rem, 4vw, 3rem) !important; }
.par-filters { margin-bottom: 1.25rem; }
.par-filters__label {
  display: block; font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--par-leaf); margin-bottom: 0.55rem;
}
.par-filters__chips {
  display: flex; flex-wrap: wrap; gap: 0.45rem;
}
.par-chip {
  border: 1.5px solid rgba(47,107,50,0.18);
  background: #fff;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font: inherit; font-size: 0.88rem; font-weight: 700;
  color: var(--par-ink); cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.par-chip:hover { border-color: var(--par-lime); transform: translateY(-1px); }
.par-chip.is-active {
  background: var(--par-leaf); color: #fff; border-color: var(--par-leaf);
}
.par-count {
  font-size: 0.9rem; color: var(--par-muted); margin: 0 0 1rem; font-weight: 600;
}
.par-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}
@media (max-width: 960px) {
  .par-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .par-grid { grid-template-columns: 1fr; }
}

.par-card {
  background: #fff;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 12px 32px rgba(26,26,26,0.05);
  display: flex; flex-direction: column;
  transition: transform 0.25s cubic-bezier(0.34, 1.3, 0.64, 1), box-shadow 0.25s ease;
}
.par-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(47,107,50,0.12);
}
.par-card.is-hidden { display: none !important; }
.par-card__media {
  display: block; aspect-ratio: 16 / 10; overflow: hidden; background: #e8efe0;
}
.par-card__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.45s ease;
}
.par-card:hover .par-card__media img { transform: scale(1.05); }
.par-card__body {
  padding: 1.1rem 1.15rem 1.2rem;
  display: flex; flex-direction: column; gap: 0.3rem; flex: 1;
}
.par-card__type {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--par-leaf);
}
.par-card__title {
  font-family: var(--font-display, Outfit, sans-serif);
  font-size: 1.2rem; margin: 0; letter-spacing: -0.02em; line-height: 1.2;
}
.par-card__title a { color: inherit; text-decoration: none; }
.par-card__title a:hover { color: var(--par-leaf); }
.par-card__sci {
  margin: 0; font-size: 0.88rem; color: var(--par-muted);
}
.par-card__areas {
  margin: 0.25rem 0 0; font-size: 0.9rem; color: var(--par-muted); line-height: 1.45;
}
.par-card__tags {
  display: flex; flex-wrap: wrap; gap: 0.3rem; margin-top: 0.45rem;
}
.par-card__tags span {
  font-size: 0.72rem; font-weight: 700;
  background: var(--par-mist); color: var(--par-leaf);
  padding: 0.2rem 0.5rem; border-radius: 999px;
}
.par-card__link {
  margin-top: auto; padding-top: 0.75rem;
  font-weight: 800; font-size: 0.9rem; color: var(--par-leaf); text-decoration: none;
}
.par-card__link:hover { color: var(--par-ink); }

.par-empty { text-align: center; padding: 2.5rem 1rem; }
.par-pagination { margin-top: 2rem; display: flex; justify-content: center; }
.par-disclaimer {
  margin-top: 2.5rem;
  padding: 1.1rem 1.2rem;
  background: #fff;
  border-left: 4px solid var(--par-lime);
  border-radius: 0.85rem;
  font-size: 0.9rem; color: var(--par-muted); line-height: 1.55;
}

.par-cta {
  padding: clamp(2.75rem, 6vw, 4rem) 0;
  background: linear-gradient(155deg, #101a12, #2f6b32);
  color: #fff; text-align: center;
}
.par-cta__inner { max-width: 36rem; margin-inline: auto; }
.par-cta h2 {
  font-family: var(--font-display, Outfit, sans-serif);
  font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 0 0 0.65rem; color: #fff;
}
.par-cta p { color: rgba(255,255,255,0.8); margin: 0 0 1.35rem; line-height: 1.6; }
.par-cta__actions { display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: center; }
.par-cta .btn--ghost {
  background: transparent; border: 1.5px solid rgba(255,255,255,0.45); color: #fff;
}

/* ========== Single ========== */
.par-single-hero {
  padding: clamp(1.75rem, 4vw, 2.75rem) 0 0;
  background: var(--par-mist);
}
.par-single-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  padding-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
@media (max-width: 860px) {
  .par-single-hero__grid { grid-template-columns: 1fr; }
}
.par-single-hero__title {
  font-family: var(--font-display, Outfit, sans-serif);
  font-size: clamp(2rem, 4vw, 2.9rem);
  letter-spacing: -0.03em; margin: 0 0 0.45rem; line-height: 1.1;
}
.par-single-hero__sci { margin: 0 0 0.35rem; color: var(--par-muted); font-size: 1.05rem; }
.par-single-hero__aka { margin: 0 0 0.85rem; color: var(--par-muted); font-size: 0.95rem; }
.par-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.85rem; }
.par-tag {
  font-size: 0.75rem; font-weight: 800;
  padding: 0.3rem 0.7rem; border-radius: 999px;
}
.par-tag--type { background: var(--par-leaf); color: #fff; }
.par-tag--system { background: #fff; color: var(--par-leaf); border: 1px solid rgba(47,107,50,0.2); }
.par-single-hero__areas { margin: 0; color: var(--par-muted); line-height: 1.5; }
.par-single-hero__media {
  margin: 0; border-radius: 1.35rem; overflow: hidden;
  aspect-ratio: 4/3; background: #e8efe0;
  box-shadow: 0 20px 50px rgba(26,26,26,0.1);
}
.par-single-hero__img { width: 100%; height: 100%; object-fit: cover; display: block; }

.par-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}
@media (max-width: 900px) {
  .par-layout { grid-template-columns: 1fr; }
  .par-layout__side { order: -1; display: grid; gap: 1rem; }
}
.par-blocks { display: grid; gap: 1rem; margin-bottom: 1.75rem; }
.par-block {
  background: var(--par-mist);
  border-radius: 1.1rem;
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(47,107,50,0.08);
}
.par-block h2 {
  font-family: var(--font-display, Outfit, sans-serif);
  font-size: 1.2rem; margin: 0 0 0.5rem; letter-spacing: -0.02em;
}
.par-block p { margin: 0; color: var(--par-muted); line-height: 1.65; }
.par-body { font-size: 1.05rem; line-height: 1.75; color: #3d4538; }
.par-body h2 {
  font-family: var(--font-display, Outfit, sans-serif);
  margin: 1.75rem 0 0.75rem;
}
.par-cleanse-note {
  margin-top: 1.75rem;
  padding: 1.35rem 1.4rem;
  border-radius: 1.2rem;
  background: linear-gradient(165deg, #f4f8e8, #fff);
  border: 1px solid rgba(168,199,58,0.35);
}
.par-cleanse-note .section__eyebrow { color: var(--par-leaf); margin-bottom: 0.35rem; }
.par-cleanse-note p { margin: 0 0 1rem; color: var(--par-muted); line-height: 1.6; }
.par-cleanse-note__actions { display: flex; flex-wrap: wrap; gap: 0.55rem; }

.par-side-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 1.15rem;
  padding: 1.2rem 1.2rem 1.3rem;
  box-shadow: 0 10px 28px rgba(26,26,26,0.04);
  margin-bottom: 1rem;
}
.par-side-card h3 {
  font-family: var(--font-display, Outfit, sans-serif);
  font-size: 1.1rem; margin: 0 0 0.65rem;
}
.par-facts { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.45rem; }
.par-facts li {
  position: relative; padding-left: 1.15rem;
  font-size: 0.92rem; color: var(--par-muted); line-height: 1.45;
}
.par-facts li::before {
  content: ""; position: absolute; left: 0; top: 0.45rem;
  width: 0.45rem; height: 0.45rem; border-radius: 50%; background: var(--par-lime);
}
.par-side-card--cta { background: var(--par-mist); }
.par-side-card--cta p { font-size: 0.92rem; color: var(--par-muted); line-height: 1.5; }
.par-side-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; }
.par-side-links a {
  color: var(--par-leaf); font-weight: 700; text-decoration: none; font-size: 0.95rem;
}
.par-side-links a:hover { color: var(--par-ink); }

.par-related { margin-top: 3rem; }
.par-related__title {
  font-family: var(--font-display, Outfit, sans-serif);
  font-size: 1.5rem; margin: 0 0 1.15rem; letter-spacing: -0.02em;
}

/* ========== Header Parasites CTA button ========== */
.nav-parasites-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0 1.1rem;
  height: 2.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2a5f2d 0%, #2f6b32 45%, #3d8a42 100%);
  color: #fff !important;
  font-family: var(--font-display, Outfit, system-ui, sans-serif);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(47, 107, 50, 0.22);
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  line-height: 1;
  border: none;
  cursor: pointer;
}
.nav-parasites-btn:hover,
.nav-parasites-btn.is-current,
.nav-parasites-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(47, 107, 50, 0.3);
  filter: brightness(1.06);
  color: #fff !important;
  outline: none;
}
.nav-parasites-btn:active { transform: scale(0.98); }
.nav-parasites-btn__icon {
  width: 0.95rem; height: 0.95rem; display: inline-flex; flex-shrink: 0;
}
.nav-parasites-btn__icon svg {
  width: 100%; height: 100%; stroke: currentColor; fill: none;
}

/* Mobile drawer — full width CTA */
.nav-mobile__parasites {
  display: flex !important;
  margin: 0.25rem 0 1rem;
  padding: 1rem 1.1rem !important;
  height: auto !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.06em !important;
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
  border-radius: 0.85rem !important;
}

/* ==========================================================================
   Pro library + profile (v2.6.2) — richer motion
   ========================================================================== */

.par-hero--pro {
  min-height: min(56vh, 30rem);
  display: flex;
  align-items: center;
  background:
    linear-gradient(160deg, rgba(8, 18, 12, 0.9) 0%, rgba(26, 61, 34, 0.84) 45%, rgba(47, 107, 50, 0.8) 100%),
    var(--par-hero-img, none) center / cover no-repeat;
  animation: par-hero-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes par-hero-in {
  from { opacity: 0.6; filter: saturate(0.8); }
  to { opacity: 1; filter: none; }
}
.par-hero--pro .par-hero__bg {
  background:
    radial-gradient(ellipse 55% 50% at 15% 25%, rgba(168, 199, 58, 0.3), transparent 55%),
    radial-gradient(ellipse 45% 45% at 90% 80%, rgba(168, 199, 58, 0.14), transparent 50%);
  animation: par-bg-drift 12s ease-in-out infinite alternate;
}
@keyframes par-bg-drift {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.06) translate(-1.5%, 1%); }
}
.par-hero--pro .par-hero__title {
  animation: par-title-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
  background: linear-gradient(120deg, #fff 0%, #e8f5c8 45%, #a8c73a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.par-hero--pro .par-hero__eyebrow {
  animation: par-title-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.par-hero--pro .par-hero__lead {
  animation: par-title-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}
.par-hero--pro .par-search {
  animation: par-title-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
}
@keyframes par-title-rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

.par-hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.par-hero__particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(168, 199, 58, 0.55);
  animation: par-float 8s ease-in-out infinite;
  opacity: 0.55;
  box-shadow: 0 0 12px rgba(168, 199, 58, 0.45);
}
.par-hero__particle--line {
  width: 2px !important;
  height: 18px !important;
  border-radius: 2px !important;
  background: linear-gradient(180deg, rgba(168, 199, 58, 0.7), transparent) !important;
  box-shadow: none !important;
}
@keyframes par-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.35; }
  50% { transform: translateY(-32px) scale(1.3); opacity: 0.95; }
}
.par-pulse {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--par-lime);
  margin-right: 0.4rem;
  box-shadow: 0 0 0 0 rgba(168, 199, 58, 0.55);
  animation: par-pulse 2s ease-out infinite;
  vertical-align: middle;
}
@keyframes par-pulse {
  0% { box-shadow: 0 0 0 0 rgba(168, 199, 58, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(168, 199, 58, 0); }
  100% { box-shadow: 0 0 0 0 rgba(168, 199, 58, 0); }
}

/* Filter chips — springy active state */
.par-chip {
  position: relative;
  overflow: hidden;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.25s ease;
}
.par-chip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(168, 199, 58, 0.35), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.par-chip:hover::after { opacity: 1; }
.par-chip:hover { transform: translateY(-2px) scale(1.03); }
.par-chip.is-active {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(47, 107, 50, 0.22);
  animation: par-chip-pop 0.45s cubic-bezier(0.34, 1.45, 0.64, 1);
}
@keyframes par-chip-pop {
  0% { transform: scale(0.92); }
  60% { transform: scale(1.08); }
  100% { transform: scale(1.05); }
}

.par-card--pro {
  position: relative;
  border: 1px solid rgba(47, 107, 50, 0.1);
  transform-style: preserve-3d;
  will-change: transform, opacity;
  animation: par-card-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--i, 0) * 0.06s);
  transition: box-shadow 0.35s ease, border-color 0.3s ease;
}
.par-card--pro.is-filter-anim {
  animation: par-card-filter 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--i, 0) * 0.04s);
}
@keyframes par-card-in {
  from { opacity: 0; transform: translateY(22px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes par-card-filter {
  from { opacity: 0; transform: translateY(14px) scale(0.97); filter: blur(4px); }
  to { opacity: 1; transform: none; filter: none; }
}
.par-card--pro:hover {
  border-color: rgba(168, 199, 58, 0.45);
  box-shadow: 0 22px 48px rgba(47, 107, 50, 0.16);
}
.par-card--pro .par-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, #e8efe0, #dfe8d4);
}
.par-card--pro .par-card__media img {
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}
.par-card--pro:hover .par-card__media img {
  transform: scale(1.08);
  filter: saturate(1.08);
}
.par-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.4) 48%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.75s ease;
  pointer-events: none;
  z-index: 1;
}
.par-card--pro:hover .par-card__shine {
  transform: translateX(120%);
}
.par-card__view {
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  transform: translate(-50%, 10px);
  background: rgba(26, 26, 26, 0.84);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
  pointer-events: none;
  z-index: 2;
  backdrop-filter: blur(6px);
}
.par-card--pro:hover .par-card__view {
  opacity: 1;
  transform: translate(-50%, 0);
}
.par-card--pro .par-card__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.25s ease, color 0.2s ease;
}
.par-card--pro:hover .par-card__link {
  gap: 0.5rem;
  color: var(--par-leaf);
}

/* Lime burst dots (filter click) */
.par-burst {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  overflow: hidden;
}
.par-burst__dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: -4px 0 0 -4px;
  animation: par-burst-fly 0.7s ease-out forwards;
  box-shadow: 0 0 10px currentColor;
}
@keyframes par-burst-fly {
  0% { transform: translate(0, 0) scale(1); opacity: 1; }
  100% { transform: translate(var(--tx), var(--ty)) scale(0.2); opacity: 0; }
}

/* Profile single */
.par-profile {
  position: relative;
  overflow: clip;
}
.par-orbits {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.par-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(47, 107, 50, 0.1);
  animation: par-spin 40s linear infinite;
}
.par-orbit--1 { width: 42rem; height: 42rem; top: -12rem; right: -10rem; box-shadow: inset 0 0 40px rgba(168, 199, 58, 0.06); }
.par-orbit--2 { width: 28rem; height: 28rem; bottom: 10%; left: -8rem; animation-duration: 55s; animation-direction: reverse; }
.par-orbit--3 { width: 18rem; height: 18rem; top: 40%; right: 8%; opacity: 0.55; animation-duration: 32s; }
@keyframes par-spin {
  to { transform: rotate(360deg); }
}

/* Reading progress on profile */
.par-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 2000;
  background: linear-gradient(90deg, #2f6b32, #a8c73a, #e8f5c8);
  box-shadow: 0 0 12px rgba(168, 199, 58, 0.55);
  transition: width 0.08s linear;
  pointer-events: none;
}

.par-profile-hero {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(2.5rem, 5vw, 3.75rem);
  background: linear-gradient(155deg, #0a140f 0%, #163520 48%, #2a5f2d 100%);
  color: #fff;
  overflow: hidden;
}
.par-profile-hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 80% 40%, rgba(168, 199, 58, 0.26), transparent 55%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(47, 107, 50, 0.38), transparent 50%);
  pointer-events: none;
  will-change: transform;
}
.par-profile-hero__copy > * {
  animation: par-title-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.par-profile-hero__copy > *:nth-child(1) { animation-delay: 0.05s; }
.par-profile-hero__copy > *:nth-child(2) { animation-delay: 0.12s; }
.par-profile-hero__copy > *:nth-child(3) { animation-delay: 0.18s; }
.par-profile-hero__copy > *:nth-child(4) { animation-delay: 0.24s; }
.par-profile-hero__copy > *:nth-child(5) { animation-delay: 0.3s; }
.par-profile-hero__copy > *:nth-child(6) { animation-delay: 0.36s; }
.par-profile-hero__copy > *:nth-child(7) { animation-delay: 0.42s; }
@keyframes par-media-in {
  from { opacity: 0; transform: translateX(24px) scale(0.96); }
  to { opacity: 1; transform: none; }
}
.par-profile-hero .container { position: relative; z-index: 1; }
.par-profile-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-top: 1rem;
}
@media (max-width: 900px) {
  .par-profile-hero__grid { grid-template-columns: 1fr; }
  .par-profile-hero__media { order: -1; max-width: 28rem; margin-inline: auto; }
}
.par-profile-hero__eyebrow {
  display: flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--par-lime);
  margin: 0 0 0.85rem;
}
.par-profile-hero__title {
  font-family: var(--font-display, Outfit, sans-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 0 0.55rem;
  color: #fff;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
  animation: par-title-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}
.par-profile-hero__sci {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
}
.par-profile-hero__aka {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
}
.par-tags--hero .par-tag--system {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.par-focus-pill {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.75rem;
  margin: 0.35rem 0 1.25rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 100%;
}
.par-focus-pill__label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--par-lime);
}
.par-focus-pill__text {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
}
.par-profile-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.par-profile-hero__actions .btn--ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  background: transparent;
}
.par-profile-hero__actions .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.par-profile-hero__media {
  margin: 0;
  perspective: 900px;
  animation: par-media-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}
.par-profile-hero__frame {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #15261a;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(168, 199, 58, 0.25),
    0 0 40px rgba(168, 199, 58, 0.12);
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
}
.par-profile-hero__frame:hover {
  box-shadow:
    0 36px 70px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(168, 199, 58, 0.4),
    0 0 50px rgba(168, 199, 58, 0.18);
}
.par-profile-hero__ring {
  position: absolute;
  inset: -12%;
  border-radius: 50%;
  border: 1px dashed rgba(168, 199, 58, 0.4);
  animation: par-spin 28s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.par-profile-hero__ring::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(168, 199, 58, 0.15);
  animation: par-spin 18s linear infinite reverse;
}
.par-profile-hero__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.par-profile-hero__frame:hover .par-profile-hero__img {
  transform: scale(1.04);
}
.par-profile-hero__badge {
  position: absolute;
  z-index: 2;
  top: 1rem;
  left: 1rem;
  background: rgba(26, 26, 26, 0.78);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.par-stats {
  position: relative;
  z-index: 2;
  margin-top: -1.75rem;
  margin-bottom: 0.5rem;
}
.par-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}
@media (max-width: 800px) {
  .par-stats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.par-stat {
  background: #fff;
  border-radius: 1.15rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(47, 107, 50, 0.1);
  box-shadow: 0 16px 36px rgba(26, 26, 26, 0.06);
  display: grid;
  gap: 0.2rem;
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.3s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.par-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--par-lime), var(--par-leaf));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}
.par-stat:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 22px 44px rgba(47, 107, 50, 0.14);
  border-color: rgba(168, 199, 58, 0.35);
}
.par-stat:hover::before { transform: scaleY(1); }
.par-stat__icon {
  color: var(--par-lime);
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.par-stat:hover .par-stat__icon {
  transform: scale(1.2) rotate(-8deg);
}
.par-stat__label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--par-muted);
}
.par-stat__value {
  font-family: var(--font-display, Outfit, sans-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--par-ink);
  letter-spacing: -0.02em;
}

.par-education { position: relative; z-index: 1; }
.par-layout--pro {
  margin-top: 1.5rem;
}
.par-block--interactive {
  padding: 0;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.par-block--interactive:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(47, 107, 50, 0.08);
}
.par-block__head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.15rem 1.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}
.par-block__num {
  font-family: var(--font-display, Outfit, sans-serif);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--par-leaf);
  background: #fff;
  border-radius: 999px;
  width: 2.1rem;
  height: 2.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(47, 107, 50, 0.1);
}
.par-block__title {
  flex: 1;
  font-family: var(--font-display, Outfit, sans-serif);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.par-block__chev {
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--par-leaf);
  border-bottom: 2px solid var(--par-leaf);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  opacity: 0.7;
}
.par-block.is-collapsed .par-block__chev {
  transform: rotate(-135deg);
  margin-top: 0.25rem;
}
.par-block__body {
  padding: 0 1.25rem 1.2rem 4.1rem;
}
.par-block.is-collapsed .par-block__body {
  display: none;
}
@media (max-width: 560px) {
  .par-block__body { padding-left: 1.25rem; }
}

.par-cleanse-note--glow {
  position: relative;
  overflow: hidden;
}
.par-cleanse-note--glow::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 12rem;
  height: 12rem;
  background: radial-gradient(circle, rgba(168, 199, 58, 0.35), transparent 70%);
  pointer-events: none;
  animation: par-float 6s ease-in-out infinite;
}

.par-facts--animated li {
  opacity: 0;
  transform: translateX(-8px);
  animation: par-fact-in 0.45s ease forwards;
  animation-delay: calc(var(--i, 0) * 0.08s + 0.15s);
}
@keyframes par-fact-in {
  to { opacity: 1; transform: translateX(0); }
}

.par-side-card--facts {
  border-top: 3px solid var(--par-lime);
}

.par-related--pro {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.par-related__head { margin-bottom: 1.25rem; }
.par-cta--pro {
  position: relative;
  overflow: hidden;
}
.par-cta--pro::before {
  content: "";
  position: absolute;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: rgba(168, 199, 58, 0.12);
  top: -6rem;
  right: -4rem;
  animation: par-float 10s ease-in-out infinite;
}

/* Scroll reveal */
[data-par-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-par-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* Magnetic button polish on profile CTAs */
.par-profile-hero__actions .btn,
.par-cleanse-note__actions .btn {
  transition: transform 0.2s ease, box-shadow 0.25s ease, filter 0.2s ease;
}
.par-profile-hero__actions .btn.is-magnet,
.par-cleanse-note__actions .btn.is-magnet {
  will-change: transform;
}

/* Floating search focus glow */
.par-search input {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.par-search input:focus {
  outline: none;
  box-shadow: 0 12px 36px rgba(168, 199, 58, 0.28), 0 0 0 3px rgba(168, 199, 58, 0.25);
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .par-card,
  .par-card__media img,
  .nav-parasites-btn,
  .par-orbit,
  .par-hero__particle,
  .par-pulse,
  .par-card--pro,
  .par-facts--animated li,
  .par-hero--pro,
  .par-hero--pro .par-hero__bg,
  .par-hero--pro .par-hero__title,
  .par-chip.is-active,
  .par-profile-hero__title,
  .par-profile-hero__copy > *,
  .par-profile-hero__media,
  .par-burst__dot,
  [data-par-reveal] {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    -webkit-text-fill-color: inherit !important;
    color: inherit !important;
  }
  .par-hero--pro .par-hero__title {
    background: none;
    color: #fff;
  }
}
