/* Ahimsa home hero — scoped to .jaevc-main-page */

.jaevc-main-page {
  --jaevc-main-page-fg: #141414;
  --jaevc-main-page-fg-muted: #2a2a2a;
  --jaevc-main-page-bg: #ffffff;
  /* Block parent blend modes (e.g. cover overlays) must not combine with the watermark */
  isolation: isolate;
  position: relative;
  margin: 0 auto;
  max-width: 48rem;
  padding: 2.5rem 1.25rem 3rem;
  background: var(--jaevc-main-page-bg);
  color: var(--jaevc-main-page-fg);
  border-radius: 12px;
  overflow: hidden;
  font-size: 1.0625rem;
  line-height: 1.7;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.jaevc-main-page__watermark {
  position: absolute;
  inset: -5%;
  z-index: 0;
  pointer-events: none;
  background-color: var(--jaevc-main-page-bg);
}

.jaevc-main-page__watermark-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  mix-blend-mode: normal;
  forced-color-adjust: none;
}

/* Optional: some transparent line-art assets read better with polarity flipped on a dark panel */
.jaevc-main-page__watermark-img--invert {
  filter: invert(1);
}

.jaevc-main-page__inner {
  position: relative;
  z-index: 1;
}

.jaevc-main-page__title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.65rem, 4vw, 2.1rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-align: center;
  color: var(--jaevc-main-page-fg);
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.95), 0 0 14px rgba(255, 255, 255, 0.55);
}

.jaevc-main-page__body p {
  margin: 0 0 1.1em;
  color: var(--jaevc-main-page-fg-muted);
  font-weight: 700;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.9), 0 0 10px rgba(255, 255, 255, 0.45);
}

.jaevc-main-page__body p:last-child {
  margin-bottom: 0;
}
