/**
 * Divinity calculators & philosophy articles — interactive learning tools.
 */

.gp-page {
  --gp-ink: #1a2433;
  --gp-muted: #4a5a6a;
  --gp-line: rgba(30, 58, 95, 0.14);
  --gp-accent: #1e4d6b;
  --gp-accent-soft: #e8f1f6;
  --gp-warm: #b45309;
  --gp-panel: #f7fafc;
  color: var(--gp-ink);
  font-family: "Outfit", system-ui, sans-serif;
  background:
    radial-gradient(ellipse 70% 40% at 8% 0%, rgba(30, 77, 107, 0.12), transparent 55%),
    radial-gradient(ellipse 55% 35% at 92% 5%, rgba(180, 83, 9, 0.08), transparent 50%),
    linear-gradient(180deg, #eef3f7 0%, #f7fafc 30%, #f4f1ea 100%);
  min-height: 70vh;
}

.gp-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 4rem;
}

.gp-crumb {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--gp-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.gp-crumb a { color: var(--gp-accent); }

.gp-hero { margin-bottom: 1.25rem; max-width: 46rem; }

.gp-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gp-accent);
  font-weight: 700;
}

.gp-section-title {
  margin: 0 0 0.85rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  line-height: 1.25;
}

.gp-hero h1 {
  margin: 0 0 0.6rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.55rem, 3.2vw, 2.2rem);
  line-height: 1.2;
}

.gp-lede {
  margin: 0;
  color: var(--gp-muted);
  line-height: 1.55;
  font-size: 1.05rem;
}

.gp-sister {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1.5rem;
}

.gp-sister a,
.gp-chip {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 650;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--gp-line);
  background: #fff;
  color: var(--gp-muted);
  cursor: pointer;
  font: inherit;
}

.gp-sister a.is-active,
.gp-sister a:hover,
.gp-chip.is-active,
.gp-chip:hover {
  background: var(--gp-accent);
  border-color: var(--gp-accent);
  color: #fff;
}

.gp-wrap > section {
  margin-top: 1.5rem;
}

.gp-wrap > section:first-of-type {
  margin-top: 0;
}

.gp-card-grid {
  display: grid;
  gap: 0.9rem;
  margin: 0 0 2rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  align-items: stretch;
}

.gp-card-grid > .gp-section-title {
  grid-column: 1 / -1;
}

.gp-card-grid--tight {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.gp-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.15rem 1.2rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid var(--gp-line);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.gp-card:hover {
  border-color: var(--gp-accent);
  box-shadow: 0 12px 28px rgba(26, 36, 51, 0.08);
}

.gp-card h3 {
  margin: 0 0 0.45rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.1rem;
}

.gp-card p { margin: 0 0 0.65rem; color: var(--gp-muted); font-size: 0.9rem; line-height: 1.45; flex: 1 1 auto; }
.gp-card span { margin-top: auto; color: var(--gp-warm); font-weight: 700; font-size: 0.88rem; }
.gp-card--static { cursor: default; }
.gp-card--static:hover { box-shadow: none; border-color: var(--gp-line); }

.gp-match {
  padding: 1.2rem 1.25rem;
  border-radius: 1.15rem;
  background: linear-gradient(160deg, #fff, var(--gp-accent-soft));
  border: 1px solid var(--gp-line);
  margin-bottom: 1.25rem;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 800px) {
  .gp-match {
    grid-template-columns: 1fr 180px;
    align-items: center;
  }
}

.gp-match h2 {
  margin: 0.2rem 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
}

.gp-radar svg {
  width: 160px;
  height: 160px;
  display: block;
  margin: 0 auto;
}

.gp-preset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.gp-axes {
  margin: 1.75rem 0;
  padding: 1.2rem 1.15rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--gp-line);
}

.gp-axes > h2 {
  margin: 0 0 1rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
}

.gp-axis {
  padding: 0.95rem 0;
  border-top: 1px dashed var(--gp-line);
}

.gp-axis:first-of-type { border-top: 0; }

.gp-axis h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.gp-axis header p {
  margin: 0 0 0.65rem;
  color: var(--gp-muted);
  font-size: 0.9rem;
}

.gp-slider {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.65rem;
  align-items: center;
}

.gp-slider__val {
  font-weight: 750;
  color: var(--gp-warm);
  font-variant-numeric: tabular-nums;
}

.gp-slider input[type="range"] {
  width: 100%;
  accent-color: var(--gp-accent);
}

.gp-range-labels {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.55rem;
  font-size: 0.72rem;
  color: var(--gp-muted);
  line-height: 1.35;
}

.gp-note,
.gp-insight {
  margin: 2rem 0;
  padding: 1.15rem 1.2rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid var(--gp-line);
}

.gp-insight {
  background: linear-gradient(165deg, #1e293b, #0f172a);
  color: #f8fafc;
  border: 0;
  font-size: 1.05rem;
  line-height: 1.55;
}

.gp-insight p { margin: 0; }

.gp-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9rem;
  color: var(--gp-accent);
}

/* ── Permutation space highlight ── */

.gp-perm {
  margin: 2.5rem 0 2rem;
  padding: 1.6rem 1.4rem 1.5rem;
  border-radius: 1.15rem;
  background:
    radial-gradient(ellipse 70% 50% at 90% 0%, rgba(240, 195, 106, 0.22), transparent 55%),
    linear-gradient(165deg, #102536 0%, #1e4d6b 48%, #0b1724 100%);
  color: #f7fafc;
  border: 1px solid rgba(240, 195, 106, 0.28);
  box-shadow: 0 18px 40px rgba(11, 23, 36, 0.22);
}

.gp-perm__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: #f0c36a;
}

.gp-perm h2 {
  margin: 0 0 0.75rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}

.gp-perm__lede {
  margin: 0 0 1.25rem;
  max-width: 42rem;
  font-size: 1.08rem;
  line-height: 1.5;
  color: rgba(247, 250, 252, 0.88);
}

.gp-perm__calc {
  display: grid;
  gap: 0.55rem;
  justify-items: start;
  margin: 0 0 1.25rem;
  padding: 1.15rem 1.2rem;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.gp-perm__eq {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  line-height: 1;
}

.gp-perm__base {
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  color: #f0c36a;
}

.gp-perm__op {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: rgba(247, 250, 252, 0.7);
}

.gp-perm__exp {
  font-size: clamp(1.8rem, 4.5vw, 2.5rem);
  color: #f0c36a;
  align-self: flex-start;
  margin-top: 0.15rem;
}

.gp-perm__eq-sign {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin: 0 0.15rem 0 0.35rem;
  color: rgba(247, 250, 252, 0.65);
}

.gp-perm__total {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.55rem, 4.2vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  word-break: break-word;
}

.gp-perm__formula {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.95rem;
  color: rgba(240, 195, 106, 0.92);
}

.gp-perm__fun {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  margin: 0;
  padding: 0.95rem 1rem;
  border-radius: 0.85rem;
  background: rgba(240, 195, 106, 0.12);
  border: 1px dashed rgba(240, 195, 106, 0.45);
}

.gp-perm__fun-label {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.75rem;
  line-height: 1;
  color: #f0c36a;
}

.gp-perm__fun p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(247, 250, 252, 0.92);
}

.gp-perm__fun--sanatana {
  margin-top: 0.75rem;
  background: rgba(47, 107, 69, 0.18);
  border-color: rgba(126, 200, 152, 0.45);
}

.gp-perm__fun--sanatana .gp-perm__fun-label {
  color: #9dd4ad;
}

@media (max-width: 520px) {
  .gp-perm {
    padding: 1.35rem 1.1rem;
  }
}

.gp-tabs { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }

.gp-panel { display: none; }
.gp-panel.is-visible {
  display: block;
  animation: gp-fade 0.28s ease;
}

@keyframes gp-fade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

.gp-panel h2 {
  margin: 0 0 0.65rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
}

.gp-set-box {
  padding: 0.85rem 1rem;
  margin: 0.85rem 0 1.1rem;
  border-radius: 0.85rem;
  background: var(--gp-accent-soft);
  border-left: 3px solid var(--gp-accent);
}

.gp-venn {
  margin: 1rem 0 1.5rem;
  padding: 0.75rem;
  border-radius: 1rem;
  background: #0f172a;
  overflow: hidden;
}

.gp-venn svg {
  width: 100%;
  height: auto;
  display: block;
}

.gp-venn__note {
  margin: 0.65rem 0.35rem 0.25rem;
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.45;
}

.gp-table-block { margin: 2rem 0; }

.gp-table-wrap {
  overflow-x: auto;
  border-radius: 1rem;
  border: 1px solid var(--gp-line);
  background: #fff;
}

.gp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.gp-table th,
.gp-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--gp-line);
  font-size: 0.9rem;
  line-height: 1.45;
}

.gp-table thead th {
  background: var(--gp-accent-soft);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Prism circle */
.gp-prism {
  --gp-count: 6;
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1;
  margin: 1rem auto 1.5rem;
}

.gp-prism__core {
  position: absolute;
  inset: 34%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(160deg, #fff, var(--gp-accent-soft));
  border: 2px solid color-mix(in srgb, var(--gp-accent) 35%, #fff);
  z-index: 2;
  text-align: center;
}

.gp-prism__core span { font-size: 1.4rem; color: var(--gp-warm); }
.gp-prism__core strong { font-size: 0.7rem; color: var(--gp-ink); }

.gp-prism__facet {
  --pg-index: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6.4rem;
  margin: -1.6rem 0 0 -3.2rem;
  transform: rotate(calc((360deg / var(--pg-count, var(--gp-count))) * var(--pg-index) - 90deg))
    translate(9rem)
    rotate(calc(-1 * ((360deg / var(--pg-count, var(--gp-count))) * var(--pg-index) - 90deg)));
  padding: 0.45rem 0.35rem;
  border-radius: 0.85rem;
  border: 1px solid var(--gp-line);
  background: #fff;
  font: inherit;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  color: var(--gp-ink);
  z-index: 1;
}

.gp-prism__facet.is-active,
.gp-prism__facet:hover {
  background: var(--gp-accent-soft);
  border-color: var(--gp-accent);
  box-shadow: 0 8px 18px rgba(30, 77, 107, 0.14);
  z-index: 3;
}

.gp-bidirect {
  display: grid;
  gap: 0.85rem;
  padding: 1.1rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid var(--gp-line);
}

@media (min-width: 800px) {
  .gp-bidirect {
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
  }
}

.gp-bidirect h3 {
  margin: 0 0 0.45rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gp-accent);
}

.gp-bidirect ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--gp-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.gp-bidirect__arrow {
  text-align: center;
  font-size: 1.5rem;
  color: var(--gp-warm);
  padding-top: 1.5rem;
}

.gp-theo {
  margin-top: 1rem;
  padding: 1.1rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, #fff, #fff7ed);
  border: 1px solid var(--gp-line);
}

.gp-theo h3 {
  margin: 0 0 0.65rem;
  font-family: "Fraunces", Georgia, serif;
}

.gp-detail-cols {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 720px) {
  .gp-detail-cols { grid-template-columns: 1fr 1fr; }
}

.gp-detail-cols p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--gp-muted);
}

/* Article lens */
.gp-lens {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0.35rem;
  align-items: center;
  margin: 1.25rem 0 1.5rem;
  padding: 1rem;
  border-radius: 1.1rem;
  background: #fff;
  border: 1px solid var(--gp-line);
}

.gp-lens__nirguna,
.gp-lens__murti,
.gp-lens__devotee {
  text-align: center;
  padding: 0.85rem 0.5rem;
  border-radius: 0.9rem;
  background: var(--gp-panel);
}

.gp-lens__murti {
  background: var(--gp-accent-soft);
  border: 1px solid color-mix(in srgb, var(--gp-accent) 30%, #fff);
}

.gp-lens__murti.is-pulse {
  animation: gp-pulse 2.4s ease-in-out infinite;
}

@keyframes gp-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(30, 77, 107, 0.2); }
  50% { box-shadow: 0 0 0 10px rgba(30, 77, 107, 0); }
}

.gp-lens span { display: block; font-weight: 750; }
.gp-lens em { font-style: normal; font-size: 0.72rem; color: var(--gp-muted); }

.gp-lens__beam {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gp-warm), transparent);
}

.gp-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  position: sticky;
  top: 0.5rem;
  z-index: 5;
  padding: 0.5rem 0;
  background: color-mix(in srgb, #eef3f7 88%, transparent);
  backdrop-filter: blur(6px);
}

.gp-toc a {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 650;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--gp-line);
  background: #fff;
  color: var(--gp-muted);
  max-width: 14rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gp-toc a.is-active,
.gp-toc a:hover {
  background: var(--gp-accent);
  color: #fff;
  border-color: var(--gp-accent);
}

.gp-article-sec {
  margin: 0 0 1.75rem;
  padding: 1.2rem 1.15rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--gp-line);
}

.gp-article-sec h2 {
  margin: 0 0 0.75rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.3rem;
}

.gp-prose {
  color: var(--gp-muted);
  line-height: 1.65;
  font-size: 1rem;
}

.gp-parallels { margin: 2rem 0; }
.gp-parallels > h2 {
  margin: 0 0 0.85rem;
  font-family: "Fraunces", Georgia, serif;
}

@media (max-width: 640px) {
  .gp-lens {
    grid-template-columns: 1fr;
  }
  .gp-lens__beam { width: 2px; height: 1.1rem; margin: 0 auto; }
  .gp-prism { width: min(100%, 320px); }
  .gp-prism__facet {
    width: 5.4rem;
    margin: -1.4rem 0 0 -2.7rem;
    transform: rotate(calc((360deg / var(--pg-count, var(--gp-count))) * var(--pg-index) - 90deg))
      translate(6.8rem)
      rotate(calc(-1 * ((360deg / var(--pg-count, var(--gp-count))) * var(--pg-index) - 90deg)));
  }
  .gp-range-labels { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .gp-panel.is-visible,
  .gp-lens__murti.is-pulse {
    animation: none;
  }
}

/* ── One-God article hero ── */

.gp-one-god {
  padding-top: 0;
}

.gp-one-god > .gp-wrap {
  padding-top: 1.75rem;
}

.gp-article-hero {
  position: relative;
  overflow: hidden;
  min-height: min(78vh, 640px);
  display: grid;
  align-items: end;
  color: #f7fafc;
  background:
    linear-gradient(180deg, rgba(8, 18, 28, 0.15) 0%, rgba(8, 18, 28, 0.72) 55%, #08121c 100%),
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(30, 77, 107, 0.55), transparent 60%),
    linear-gradient(135deg, #0b1724 0%, #14324a 48%, #1a2433 100%);
}

.gp-article-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gp-article-hero__orbit {
  position: absolute;
  right: max(-8%, calc(50% - 520px));
  top: 50%;
  width: min(92vw, 620px);
  transform: translateY(-48%);
  opacity: 0.95;
  animation: gpHeroOrbit 28s linear infinite;
}

@keyframes gpHeroOrbit {
  from { transform: translateY(-48%) rotate(0deg); }
  to { transform: translateY(-48%) rotate(360deg); }
}

.gp-article-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1.25rem 2.75rem;
}

.gp-crumb--on-dark,
.gp-crumb--on-dark a {
  color: rgba(247, 250, 252, 0.72);
}

.gp-crumb--on-dark a:hover {
  color: #fff;
}

.gp-article-hero__brand {
  margin: 1.25rem 0 0.35rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.65rem, 3.8vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f0c36a;
  line-height: 1.1;
}

.gp-kicker--on-dark {
  color: rgba(240, 195, 106, 0.9);
}

.gp-article-hero h1 {
  margin: 0.2rem 0 0.75rem;
  max-width: 16ch;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.35rem, 6.5vw, 4.1rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
}

.gp-article-hero__lede {
  margin: 0 0 1.35rem;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.5;
  color: rgba(247, 250, 252, 0.82);
}

.gp-article-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  background: #f0c36a;
  color: #0b1724;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gp-article-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  color: #0b1724;
}

.gp-one-god__framework {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--gp-accent);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 0 0.65rem 0.65rem 0;
  color: var(--gp-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .gp-article-hero {
    min-height: min(70vh, 560px);
    align-items: center;
  }
  .gp-article-hero__orbit {
    right: 50%;
    top: 18%;
    width: min(120vw, 420px);
    transform: translate(50%, 0);
    opacity: 0.45;
    animation: none;
  }
  .gp-article-hero h1 {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gp-article-hero__orbit {
    animation: none;
  }
  .gp-lens-panel.is-visible {
    animation: none;
  }
}

/* ── God vs Evil interactive lab ── */

.gp-article-hero--gve {
  background:
    linear-gradient(180deg, rgba(8, 18, 28, 0.2) 0%, rgba(8, 18, 28, 0.78) 58%, #08121c 100%),
    radial-gradient(ellipse 55% 50% at 22% 40%, rgba(30, 77, 107, 0.55), transparent 60%),
    radial-gradient(ellipse 50% 45% at 78% 45%, rgba(127, 29, 29, 0.45), transparent 62%),
    linear-gradient(135deg, #0b1724 0%, #1a2433 100%);
}

.gp-gve-hero-venn {
  position: absolute;
  right: max(-4%, calc(48% - 280px));
  top: 42%;
  width: min(88vw, 480px);
  height: min(52vw, 280px);
  transform: translateY(-50%);
}

.gp-gve-hero-venn__god,
.gp-gve-hero-venn__evil {
  position: absolute;
  top: 50%;
  width: 12.5rem;
  height: 12.5rem;
  margin-top: -6.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 1.15rem;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
}

.gp-gve-hero-venn__god {
  left: 18%;
  background: radial-gradient(circle at 35% 30%, #3b82f6, #1e3a8a 70%);
  color: #eef5ff;
  box-shadow: 0 0 0 2px rgba(147, 197, 253, 0.45), 0 18px 40px rgba(0, 0, 0, 0.35);
  animation: gpGveBob 5.5s ease-in-out infinite;
}

.gp-gve-hero-venn__evil {
  right: 18%;
  background: radial-gradient(circle at 35% 30%, #fb7185, #7f1d1d 72%);
  color: #fff1f2;
  box-shadow: 0 0 0 2px rgba(251, 113, 133, 0.4), 0 18px 40px rgba(0, 0, 0, 0.35);
  animation: gpGveBob 5.5s ease-in-out infinite 0.4s;
}

.gp-gve-hero-venn[data-mode="independent"] .gp-gve-hero-venn__god {
  transform: translateX(-0.75rem);
}
.gp-gve-hero-venn[data-mode="independent"] .gp-gve-hero-venn__evil {
  transform: translateX(0.75rem);
}

.gp-gve-hero-venn[data-mode="subset"] .gp-gve-hero-venn__god {
  transform: scale(1.15);
}
.gp-gve-hero-venn[data-mode="subset"] .gp-gve-hero-venn__evil {
  right: auto;
  left: 34%;
  width: 5.5rem;
  height: 5.5rem;
  margin-top: -2.75rem;
  font-size: 0.85rem;
  transform: none;
  opacity: 0.92;
}

.gp-gve-hero-venn[data-mode="na"] .gp-gve-hero-venn__evil {
  opacity: 0;
  transform: translateX(3rem) scale(0.6);
}
.gp-gve-hero-venn[data-mode="na"] .gp-gve-hero-venn__god {
  left: 50%;
  margin-left: -6.25rem;
  transform: scale(1.2);
}

.gp-gve-hero-venn[data-mode="zero"] .gp-gve-hero-venn__evil {
  width: 3.5rem;
  height: 3.5rem;
  margin-top: -1.75rem;
  font-size: 0.75rem;
  opacity: 0.55;
}

.gp-gve-hero-venn[data-inf="absolute"] .gp-gve-hero-venn__god {
  box-shadow: 0 0 0 3px rgba(240, 195, 106, 0.75), 0 0 48px rgba(240, 195, 106, 0.35);
}

@keyframes gpGveBob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

.gp-gve-lab {
  margin: 1.5rem 0 2.5rem;
  padding: 1.4rem 1.25rem 1.5rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--gp-line);
}

.gp-gve-lab__head {
  max-width: 44rem;
  margin-bottom: 1.25rem;
}

.gp-gve-lab__head h2 {
  margin: 0 0 0.45rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
}

.gp-gve-lab__head p {
  margin: 0;
  color: var(--gp-muted);
  line-height: 1.5;
}

.gp-gve-lab__grid {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.gp-gve-controls {
  display: grid;
  gap: 0.85rem;
}

.gp-gve-field {
  margin: 0;
  padding: 0.9rem 0.95rem;
  border-radius: 0.9rem;
  border: 1px solid var(--gp-line);
  background: #fff;
}

.gp-gve-field legend {
  padding: 0 0.25rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.gp-gve-check,
.gp-gve-slider {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.55rem;
  font-size: 0.92rem;
}

.gp-gve-check {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.5rem;
}

.gp-gve-slider em {
  font-style: normal;
  font-weight: 700;
  color: var(--gp-accent);
}

.gp-gve-slider input[type="range"] {
  width: 100%;
  accent-color: var(--gp-accent);
}

.gp-gve-modes {
  display: grid;
  gap: 0.4rem;
  margin-top: 0.45rem;
}

.gp-gve-mode {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.45rem;
  align-items: center;
  padding: 0.45rem 0.55rem;
  border-radius: 0.55rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.9rem;
}

.gp-gve-mode:has(input:checked) {
  background: var(--gp-accent-soft);
  border-color: color-mix(in srgb, var(--gp-accent) 35%, var(--gp-line));
}

.gp-gve-stage {
  display: grid;
  place-items: center;
  min-height: 320px;
  border-radius: 1rem;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(30, 77, 107, 0.12), transparent 70%),
    #0f172a;
  overflow: hidden;
}

.gp-gve-canvas {
  position: relative;
  width: min(100%, 420px);
  height: 300px;
}

.gp-gve-circle {
  position: absolute;
  top: 50%;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.15rem;
  text-align: center;
  transition:
    width 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    left 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease,
    box-shadow 0.4s ease;
  will-change: width, height, left, transform;
}

.gp-gve-circle span {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 1rem;
}

.gp-gve-circle em {
  font-style: normal;
  font-size: 0.85rem;
  opacity: 0.9;
}

.gp-gve-circle--god {
  left: 8%;
  transform: translateY(-50%);
  background: radial-gradient(circle at 32% 28%, #60a5fa, #1e3a8a 72%);
  color: #eff6ff;
  box-shadow: 0 0 0 2px rgba(147, 197, 253, 0.4), inset 0 0 40px rgba(255, 255, 255, 0.08);
  z-index: 1;
}

.gp-gve-circle--evil {
  left: 48%;
  transform: translateY(-50%);
  background: radial-gradient(circle at 32% 28%, #fb7185, #7f1d1d 72%);
  color: #fff1f2;
  box-shadow: 0 0 0 2px rgba(251, 113, 133, 0.35);
  z-index: 2;
}

.gp-gve-canvas[data-mode="independent"] .gp-gve-circle--god {
  left: 4%;
}
.gp-gve-canvas[data-mode="independent"] .gp-gve-circle--evil {
  left: 52%;
}

.gp-gve-canvas[data-mode="subset"] .gp-gve-circle--god {
  left: 22%;
}
.gp-gve-canvas[data-mode="subset"] .gp-gve-circle--evil {
  left: 38%;
  z-index: 3;
  box-shadow: 0 0 0 2px rgba(240, 195, 106, 0.55);
}

.gp-gve-canvas[data-mode="na"] .gp-gve-circle--god {
  left: 28%;
}
.gp-gve-canvas[data-mode="na"] .gp-gve-circle--evil {
  left: 70%;
  pointer-events: none;
}

.gp-gve-canvas[data-mode="zero"] .gp-gve-circle--evil {
  left: 58%;
  opacity: 0.55;
}

.gp-gve-canvas[data-inf="absolute"] .gp-gve-circle--god {
  box-shadow: 0 0 0 3px rgba(240, 195, 106, 0.8), 0 0 36px rgba(240, 195, 106, 0.35);
}

.gp-gve-result {
  margin-top: 1.25rem;
  padding: 1.25rem 1.3rem;
  border-radius: 1rem;
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(240, 195, 106, 0.18), transparent 55%),
    linear-gradient(165deg, #102536 0%, #1e4d6b 50%, #0b1724 100%);
  color: #f7fafc;
  border: 1px solid rgba(240, 195, 106, 0.28);
}

.gp-gve-badge {
  display: inline-flex;
  margin-bottom: 0.55rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.12);
  color: #f0c36a;
}

.gp-gve-badge[data-class="absolute"] {
  background: rgba(240, 195, 106, 0.22);
  color: #fde68a;
}

.gp-gve-badge[data-class="assumed"] {
  background: rgba(251, 113, 133, 0.18);
  color: #fecdd3;
}

.gp-gve-badge[data-class="finite"] {
  background: rgba(147, 197, 253, 0.18);
  color: #bfdbfe;
}

.gp-gve-result h3 {
  margin: 0 0 0.35rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
}

.gp-gve-ratio {
  margin: 0 0 0.35rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.55rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
  word-break: break-word;
  color: #fff;
}

.gp-gve-formula {
  margin: 0 0 0.75rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.95rem;
  color: rgba(240, 195, 106, 0.92);
}

.gp-gve-explain {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(247, 250, 252, 0.88);
}

.gp-gve-paradigms {
  margin: 2rem 0;
}

.gp-gve-paradigms > header {
  margin-bottom: 0.85rem;
}

.gp-gve-paradigms h2,
.gp-gve-paradigms h3 {
  font-family: "Fraunces", Georgia, serif;
}

@media (max-width: 900px) {
  .gp-gve-lab__grid {
    grid-template-columns: 1fr;
  }
  .gp-gve-hero-venn {
    opacity: 0.4;
    right: 50%;
    top: 22%;
    transform: translate(50%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gp-gve-hero-venn__god,
  .gp-gve-hero-venn__evil,
  .gp-gve-circle {
    animation: none;
    transition: none;
  }
}

/* ── Prism of Relation interactive lab ── */

.gp-article-hero--prism {
  background:
    linear-gradient(180deg, rgba(8, 18, 28, 0.15) 0%, rgba(8, 18, 28, 0.82) 62%, #08121c 100%),
    radial-gradient(ellipse 48% 55% at 18% 42%, rgba(240, 195, 106, 0.22), transparent 58%),
    radial-gradient(ellipse 42% 48% at 82% 38%, rgba(30, 77, 107, 0.5), transparent 60%),
    linear-gradient(145deg, #0b1724 0%, #152536 55%, #0d1a26 100%);
}

.gp-prism-hero-viz {
  position: absolute;
  right: max(2%, calc(46% - 220px));
  top: 48%;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  transform: translateY(-50%);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(238, 245, 255, 0.85);
  pointer-events: none;
}

.gp-prism-hero-viz__entity,
.gp-prism-hero-viz__view {
  padding: 0.65rem 0.9rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(240, 195, 106, 0.35);
  background: rgba(11, 23, 36, 0.55);
  backdrop-filter: blur(6px);
}

.gp-prism-hero-viz__core {
  width: 3.2rem;
  height: 3.2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #f0c36a, #c9922e);
  color: #0b1724;
  font-size: 1.25rem;
  box-shadow: 0 0 0 6px rgba(240, 195, 106, 0.18), 0 12px 28px rgba(0, 0, 0, 0.35);
  animation: gpPrismSpin 12s linear infinite;
}

.gp-prism-hero-viz__beam {
  width: 2.8rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(240, 195, 106, 0.15), #f0c36a, rgba(240, 195, 106, 0.15));
  border-radius: 2px;
  animation: gpPrismBeam 2.4s ease-in-out infinite;
}

.gp-prism-hero-viz__beam--out {
  animation-delay: 0.4s;
  background: linear-gradient(90deg, rgba(147, 197, 253, 0.2), #93c5fd, rgba(147, 197, 253, 0.2));
}

@keyframes gpPrismSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes gpPrismBeam {
  0%, 100% { opacity: 0.35; transform: scaleX(0.85); }
  50% { opacity: 1; transform: scaleX(1); }
}

.gp-prism-lab {
  margin: 0 0 2rem;
  padding: 1.35rem 1.25rem 1.5rem;
  border-radius: 1.25rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.88)),
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(240, 195, 106, 0.12), transparent 70%);
  border: 1px solid var(--gp-line);
  box-shadow: 0 18px 40px rgba(11, 23, 36, 0.08);
}

.gp-prism-lab__head {
  max-width: 40rem;
  margin-bottom: 1.25rem;
}

.gp-prism-lab__head h2 {
  margin: 0.2rem 0 0.45rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  color: var(--gp-ink);
}

.gp-prism-lab__head p {
  margin: 0;
  color: var(--gp-muted);
  line-height: 1.5;
}

.gp-prism-gender {
  display: inline-flex;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(11, 23, 36, 0.06);
  border: 1px solid var(--gp-line);
}

.gp-prism-gender__opt {
  position: relative;
  margin: 0;
  cursor: pointer;
}

.gp-prism-gender__opt input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.gp-prism-gender__opt span {
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gp-muted);
  transition: background 0.2s ease, color 0.2s ease;
}

.gp-prism-gender__opt.is-active span,
.gp-prism-gender__opt:has(input:checked) span {
  background: #0b1724;
  color: #f0c36a;
}

.gp-prism-flow {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

@media (min-width: 960px) {
  .gp-prism-flow {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 1.15fr) minmax(0, 1.15fr);
    gap: 1.15rem;
  }
}

.gp-prism-card {
  padding: 1.15rem 1.2rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid var(--gp-line);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.gp-prism-card--entity.is-female {
  border-color: color-mix(in srgb, #be185d 28%, var(--gp-line));
  box-shadow: 0 10px 24px rgba(190, 24, 93, 0.08);
}

.gp-prism-card--entity.is-male {
  border-color: color-mix(in srgb, #1e4d6b 35%, var(--gp-line));
  box-shadow: 0 10px 24px rgba(30, 77, 107, 0.1);
}

.gp-prism-card--view.is-pulse {
  animation: gpPrismPulse 0.55s ease;
}

@keyframes gpPrismPulse {
  0% { transform: translateY(2px); box-shadow: 0 0 0 0 rgba(240, 195, 106, 0.35); }
  60% { box-shadow: 0 0 0 8px rgba(240, 195, 106, 0); }
  100% { transform: none; box-shadow: none; }
}

.gp-prism-card__kicker {
  margin: 0 0 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gp-warm);
}

.gp-prism-avatar {
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  margin-bottom: 0.65rem;
  border-radius: 50%;
  font-size: 1.45rem;
  background: linear-gradient(145deg, #f8fafc, #e8eef4);
  border: 2px solid color-mix(in srgb, var(--gp-accent) 30%, #fff);
  color: var(--gp-ink);
}

.gp-prism-card--entity.is-male .gp-prism-avatar {
  background: linear-gradient(145deg, #e8f1f7, #d0e0ec);
  border-color: #1e4d6b;
}

.gp-prism-card--entity.is-female .gp-prism-avatar {
  background: linear-gradient(145deg, #fdf2f8, #fce7f3);
  border-color: #be185d;
}

.gp-prism-card h3 {
  margin: 0 0 0.4rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  color: var(--gp-ink);
}

.gp-prism-card p {
  margin: 0;
  color: var(--gp-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.gp-prism-examples {
  margin-top: 0.95rem;
  padding-top: 0.85rem;
  border-top: 1px dashed color-mix(in srgb, var(--gp-line) 80%, transparent);
}

.gp-prism-examples h4 {
  margin: 0 0 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gp-warm);
}

.gp-prism-examples ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.gp-prism-examples li {
  padding: 0.45rem 0.65rem;
  border-radius: 0.55rem;
  background: color-mix(in srgb, #f0c36a 14%, #fff);
  border: 1px solid color-mix(in srgb, #f0c36a 28%, var(--gp-line));
  font-size: 0.8rem;
  line-height: 1.35;
  color: var(--gp-ink);
  font-weight: 600;
}

.gp-prism-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 280px;
}

.gp-prism-center__hint {
  margin: 0.25rem 0 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gp-warm);
}

.gp-prism-beam {
  width: min(100%, 12rem);
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, #f0c36a, transparent);
  opacity: 0.7;
}

.gp-prism-beam--out {
  background: linear-gradient(90deg, transparent, #1e4d6b, transparent);
}

.gp-prism-wheel {
  --gp-count: 6;
  position: relative;
  width: min(100%, 300px);
  aspect-ratio: 1;
  margin: 0.25rem auto;
}

.gp-prism-wheel .gp-prism__facet {
  width: 5.6rem;
  margin: -1.45rem 0 0 -2.8rem;
  transform: rotate(calc((360deg / var(--pg-count, var(--gp-count))) * var(--pg-index) - 90deg))
    translate(7.4rem)
    rotate(calc(-1 * ((360deg / var(--pg-count, var(--gp-count))) * var(--pg-index) - 90deg)));
  font-size: 0.58rem;
}

.gp-prism-attrs {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.75rem;
}

.gp-prism-attrs h4 {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gp-accent);
}

.gp-prism-attrs ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.gp-prism-attrs li {
  position: relative;
  padding: 0.45rem 0.65rem 0.45rem 1.05rem;
  border-radius: 0.55rem;
  background: rgba(11, 23, 36, 0.04);
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--gp-ink);
}

.gp-prism-attrs li::before {
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 0.75rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--gp-warm);
}

.gp-prism-theo {
  margin-top: 1.15rem;
  padding: 1.1rem 1.2rem;
  border-radius: 1rem;
  background: #0b1724;
  color: rgba(238, 245, 255, 0.9);
}

.gp-prism-theo .gp-kicker {
  color: #f0c36a;
}

.gp-prism-theo .gp-detail-cols p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(238, 245, 255, 0.88);
}

@media (max-width: 900px) {
  .gp-prism-hero-viz {
    right: 50%;
    top: 20%;
    transform: translate(50%, 0);
    opacity: 0.45;
    scale: 0.85;
  }
  .gp-prism-beam {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gp-prism-hero-viz__core,
  .gp-prism-hero-viz__beam,
  .gp-prism-card--view.is-pulse {
    animation: none;
  }
}

/* ── God from Various Lenses hub ── */

.gp-respect {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 0 0 1.75rem;
  padding: 0.95rem 1.1rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--gp-line);
  color: var(--gp-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.gp-respect i {
  color: var(--gp-accent);
  margin-top: 0.15rem;
}

.gp-respect p { margin: 0; }

.gp-lenses-intro {
  margin-bottom: 2rem;
  max-width: 46rem;
}

.gp-lenses-intro > p {
  color: var(--gp-muted);
  line-height: 1.55;
}

.gp-lenses-thesis {
  margin: 1rem 0 0;
  padding: 0.95rem 1.1rem;
  border-left: 3px solid var(--gp-accent);
  background: var(--gp-accent-soft);
  border-radius: 0 0.75rem 0.75rem 0;
}

.gp-lenses-thesis p {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--gp-ink);
}

.gp-lenses-section-head {
  margin-bottom: 1rem;
}

.gp-lenses-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2.25rem;
}

.gp-lens-wheel {
  --gp-count: 5;
  position: relative;
  width: min(100%, 520px);
  min-width: 380px;
  aspect-ratio: 1;
  margin: 0 auto;
  overflow: visible;
}

.gp-lens-wheel__ring {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--gp-accent) 22%, var(--gp-line));
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.94) 40%, rgba(232, 241, 246, 0.9) 100%);
}

.gp-lens-wheel__core {
  position: absolute;
  inset: 36%;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gp-line);
  z-index: 2;
  text-align: center;
}

.gp-lens-wheel__core span {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.75rem;
  color: var(--gp-accent);
  line-height: 1;
}

.gp-lens-wheel__core strong {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gp-muted);
  margin-top: 0.2rem;
}

.gp-lens-node {
  --gp-index: 0;
  --gp-hue: var(--gp-accent);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6.5rem;
  height: 6.5rem;
  margin: -3.25rem 0 0 -3.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.15rem;
  padding: 0.45rem;
  background: #fff;
  border: 2px solid color-mix(in srgb, var(--gp-hue) 35%, var(--gp-line));
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: center;
  transform: rotate(calc((360deg / var(--gp-count)) * var(--gp-index) - 90deg))
    translate(11.25rem)
    rotate(calc(-1 * ((360deg / var(--gp-count)) * var(--gp-index) - 90deg)));
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.2s ease, background 0.2s ease;
  z-index: 1;
}

.gp-lens-node__glyph {
  font-size: 1.65rem;
  line-height: 1;
  color: var(--gp-hue);
}

.gp-lens-node__label {
  font-family: "Fraunces", Georgia, serif;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.15;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.gp-lens-node.is-active,
.gp-lens-node:hover,
.gp-lens-node:focus-visible {
  border-color: var(--gp-hue);
  background: color-mix(in srgb, var(--gp-hue) 10%, #fff);
  box-shadow: 0 12px 26px rgba(26, 36, 51, 0.12);
}

.gp-lens-node.is-active {
  transform: rotate(calc((360deg / var(--gp-count)) * var(--gp-index) - 90deg))
    translate(11.25rem)
    rotate(calc(-1 * ((360deg / var(--gp-count)) * var(--gp-index) - 90deg)))
    scale(1.08);
  z-index: 3;
}

.gp-lens-panel {
  display: none;
  padding: 1.35rem 1.4rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid color-mix(in srgb, var(--gp-hue, var(--gp-accent)) 28%, var(--gp-line));
}

.gp-lens-panel.is-visible {
  display: block;
  animation: gpLensIn 0.28s ease;
}

@keyframes gpLensIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

.gp-lens-panel h3 {
  margin: 0 0 0.55rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.25;
}

.gp-lens-panel > p {
  margin: 0 0 0.85rem;
  color: var(--gp-muted);
  line-height: 1.5;
}

.gp-lens-panel__tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.gp-lens-panel__tools a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 650;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--gp-hue, var(--gp-accent)) 40%, var(--gp-line));
  background: color-mix(in srgb, var(--gp-hue, var(--gp-accent)) 8%, #fff);
  color: var(--gp-ink);
}

.gp-lens-panel__tools a:hover {
  background: var(--gp-hue, var(--gp-accent));
  border-color: var(--gp-hue, var(--gp-accent));
  color: #fff;
}

.gp-lenses-why {
  margin: 0 0 2.25rem;
  max-width: 46rem;
}

.gp-lenses-why__list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--gp-muted);
  line-height: 1.55;
}

.gp-lenses-why__list li + li {
  margin-top: 0.55rem;
}

@media (max-width: 900px) {
  .gp-lenses-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .gp-lens-wheel {
    min-width: 320px;
  }
  .gp-lens-node {
    width: 5.5rem;
    height: 5.5rem;
    margin: -2.75rem 0 0 -2.75rem;
    transform: rotate(calc((360deg / var(--gp-count)) * var(--gp-index) - 90deg))
      translate(9rem)
      rotate(calc(-1 * ((360deg / var(--gp-count)) * var(--gp-index) - 90deg)));
  }
  .gp-lens-node.is-active {
    transform: rotate(calc((360deg / var(--gp-count)) * var(--gp-index) - 90deg))
      translate(9rem)
      rotate(calc(-1 * ((360deg / var(--gp-count)) * var(--gp-index) - 90deg)))
      scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gp-lens-panel.is-visible {
    animation: none;
  }
}

/* ── Murti article: hero + interactive labs ── */

.gp-article-hero--murti {
  background:
    linear-gradient(180deg, rgba(8, 18, 28, 0.12) 0%, rgba(8, 18, 28, 0.84) 60%, #08121c 100%),
    radial-gradient(ellipse 50% 55% at 20% 40%, rgba(240, 195, 106, 0.28), transparent 58%),
    radial-gradient(ellipse 45% 50% at 78% 42%, rgba(30, 77, 107, 0.48), transparent 60%),
    linear-gradient(150deg, #0b1724 0%, #1a2a38 55%, #0d1a26 100%);
}

.gp-murti-hero-viz {
  position: absolute;
  right: max(2%, calc(46% - 240px));
  top: 48%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transform: translateY(-50%);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(238, 245, 255, 0.88);
  pointer-events: none;
}

.gp-murti-hero-viz__nir,
.gp-murti-hero-viz__eye {
  padding: 0.6rem 0.85rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(240, 195, 106, 0.35);
  background: rgba(11, 23, 36, 0.55);
  backdrop-filter: blur(6px);
}

.gp-murti-hero-viz__lens {
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #f0c36a, #c9922e);
  color: #0b1724;
  font-size: 1.35rem;
  box-shadow: 0 0 0 6px rgba(240, 195, 106, 0.18), 0 14px 32px rgba(0, 0, 0, 0.35);
  animation: gpMurtiPulse 3.2s ease-in-out infinite;
}

.gp-murti-hero-viz__beam {
  width: 2.6rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(240, 195, 106, 0.2), #f0c36a, rgba(240, 195, 106, 0.2));
  animation: gpPrismBeam 2.4s ease-in-out infinite;
}

.gp-murti-hero-viz__beam--out {
  animation-delay: 0.35s;
  background: linear-gradient(90deg, rgba(147, 197, 253, 0.2), #93c5fd, rgba(147, 197, 253, 0.2));
}

@keyframes gpMurtiPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.gp-murti-labs {
  display: grid;
  gap: 1.35rem;
  margin: 0 0 2rem;
}

.gp-murti-lab {
  padding: 1.25rem 1.2rem 1.4rem;
  border-radius: 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.9)),
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(240, 195, 106, 0.1), transparent 70%);
  border: 1px solid var(--gp-line);
  box-shadow: 0 16px 36px rgba(11, 23, 36, 0.07);
}

.gp-murti-lab__head {
  max-width: 42rem;
  margin-bottom: 1.1rem;
}

.gp-murti-lab__head h2 {
  margin: 0.15rem 0 0.4rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  color: var(--gp-ink);
}

.gp-murti-lab__head p {
  margin: 0;
  color: var(--gp-muted);
  line-height: 1.5;
}

.gp-murti-lab__note {
  margin: 0.85rem 0 0;
  padding: 0.75rem 0.9rem;
  border-radius: 0.75rem;
  background: rgba(11, 23, 36, 0.04);
  border-left: 3px solid var(--gp-warm);
  color: var(--gp-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.gp-murti-modes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.gp-murti-mode {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--gp-line);
  background: #fff;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gp-muted);
  cursor: pointer;
}

.gp-murti-mode.is-active {
  background: #0b1724;
  border-color: #0b1724;
  color: #f0c36a;
}

.gp-murti-meters {
  display: grid;
  gap: 0.75rem;
}

.gp-murti-meter__label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.3rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gp-ink);
}

.gp-murti-meter__track {
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(11, 23, 36, 0.08);
  overflow: hidden;
}

.gp-murti-meter__track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #b91c1c, #f59e0b);
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.gp-murti-meter__track--good i {
  background: linear-gradient(90deg, #1e4d6b, #38bdf8);
}

.gp-murti-meter__track--warm i {
  background: linear-gradient(90deg, #c9922e, #f0c36a);
}

.gp-murti-pipeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0.35rem;
  align-items: center;
  margin-top: 1.15rem;
  padding: 0.85rem;
  border-radius: 1rem;
  background: #0b1724;
}

.gp-murti-pipeline__node {
  text-align: center;
  padding: 0.7rem 0.4rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(238, 245, 255, 0.75);
  font-size: 0.78rem;
  font-weight: 700;
  transition: opacity 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.gp-murti-pipeline__node.is-lens {
  background: color-mix(in srgb, #f0c36a 22%, transparent);
  color: #f0c36a;
}

.gp-murti-pipeline__node.is-glow {
  box-shadow: 0 0 0 2px rgba(240, 195, 106, 0.45);
  color: #fff;
}

.gp-murti-pipeline__node.is-dim {
  opacity: 0.35;
}

.gp-murti-pipeline__beam {
  height: 2px;
  background: linear-gradient(90deg, transparent, #f0c36a, transparent);
}

.gp-murti-ishtas {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(8.5rem, 1fr));
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.gp-murti-ishta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.85rem 0.5rem;
  border-radius: 0.9rem;
  border: 1px solid var(--gp-line);
  background: #fff;
  font: inherit;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.gp-murti-ishta__glyph {
  font-size: 1.35rem;
  line-height: 1;
}

.gp-murti-ishta strong {
  font-size: 0.85rem;
  color: var(--gp-ink);
}

.gp-murti-ishta em {
  font-style: normal;
  font-size: 0.68rem;
  color: var(--gp-muted);
}

.gp-murti-ishta.is-active,
.gp-murti-ishta:hover {
  border-color: var(--gp-accent);
  box-shadow: 0 10px 22px rgba(30, 77, 107, 0.12);
  transform: translateY(-2px);
}

.gp-murti-ishta-detail {
  padding: 1.1rem 1.15rem;
  border-radius: 1rem;
  background: #0b1724;
  color: rgba(238, 245, 255, 0.9);
}

.gp-murti-ishta-detail .gp-kicker {
  color: #f0c36a;
}

.gp-murti-ishta-detail h3 {
  margin: 0.2rem 0 0.45rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  color: #fff;
}

.gp-murti-ishta-detail p {
  margin: 0 0 0.55rem;
  font-size: 0.92rem;
  line-height: 1.45;
}

.gp-murti-ishta-detail__ex {
  padding: 0.55rem 0.7rem;
  border-radius: 0.55rem;
  background: rgba(240, 195, 106, 0.12);
  border: 1px solid rgba(240, 195, 106, 0.28);
}

.gp-murti-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.gp-murti-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 0.75rem 0.65rem;
  border-radius: 0.85rem;
  border: 1px solid var(--gp-line);
  background: #fff;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.gp-murti-step__num {
  width: 1.5rem;
  height: 1.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(11, 23, 36, 0.08);
  font-size: 0.72rem;
  font-weight: 800;
}

.gp-murti-step strong {
  font-size: 0.75rem;
  line-height: 1.25;
  color: var(--gp-ink);
}

.gp-murti-step.is-active {
  border-color: var(--gp-accent);
  background: var(--gp-accent-soft);
}

.gp-murti-step.is-active .gp-murti-step__num {
  background: #0b1724;
  color: #f0c36a;
}

.gp-murti-cons-viz {
  position: relative;
  height: 10rem;
  margin: 0.5rem 0 0.25rem;
  border-radius: 1rem;
  background:
    radial-gradient(ellipse 60% 70% at 50% 60%, rgba(30, 77, 107, 0.18), transparent 70%),
    #0b1724;
  overflow: hidden;
}

.gp-murti-cons-viz__stone,
.gp-murti-cons-viz__form,
.gp-murti-cons-viz__aura,
.gp-murti-cons-viz__eyes {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease, transform 0.45s ease, box-shadow 0.45s ease;
}

.gp-murti-cons-viz__stone {
  width: 4.5rem;
  height: 3.2rem;
  border-radius: 0.4rem;
  background: linear-gradient(145deg, #64748b, #334155);
  opacity: 1;
}

.gp-murti-cons-viz__form {
  width: 3.2rem;
  height: 4.4rem;
  border-radius: 1.4rem 1.4rem 0.6rem 0.6rem;
  background: linear-gradient(180deg, #e2e8f0, #94a3b8);
  opacity: 0;
}

.gp-murti-cons-viz__aura {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 195, 106, 0.45), transparent 68%);
  opacity: 0;
}

.gp-murti-cons-viz__eyes {
  width: 1.6rem;
  height: 0.55rem;
  display: flex;
  gap: 0.45rem;
  opacity: 0;
}

.gp-murti-cons-viz__eyes::before,
.gp-murti-cons-viz__eyes::after {
  content: "";
  flex: 1;
  border-radius: 50%;
  background: #f0c36a;
  box-shadow: 0 0 10px #f0c36a;
}

.gp-murti-cons-viz[data-step="1"] .gp-murti-cons-viz__stone { opacity: 0.25; transform: translate(-50%, -50%) scale(0.85); }
.gp-murti-cons-viz[data-step="1"] .gp-murti-cons-viz__form { opacity: 1; }

.gp-murti-cons-viz[data-step="2"] .gp-murti-cons-viz__stone { opacity: 0; }
.gp-murti-cons-viz[data-step="2"] .gp-murti-cons-viz__form { opacity: 1; }
.gp-murti-cons-viz[data-step="2"] .gp-murti-cons-viz__aura { opacity: 1; animation: gpMurtiPulse 2.8s ease-in-out infinite; }

.gp-murti-cons-viz[data-step="3"] .gp-murti-cons-viz__stone { opacity: 0; }
.gp-murti-cons-viz[data-step="3"] .gp-murti-cons-viz__form { opacity: 1; }
.gp-murti-cons-viz[data-step="3"] .gp-murti-cons-viz__aura { opacity: 1; }
.gp-murti-cons-viz[data-step="3"] .gp-murti-cons-viz__eyes {
  opacity: 1;
  top: 42%;
}

.gp-murti-myths {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 800px) {
  .gp-murti-myths {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.gp-murti-myth {
  position: relative;
  min-height: 11rem;
  padding: 0;
  border: none;
  background: transparent;
  perspective: 900px;
  cursor: pointer;
  text-align: left;
  font: inherit;
}

.gp-murti-myth__q,
.gp-murti-myth__a {
  position: absolute;
  inset: 0;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  border: 1px solid var(--gp-line);
  backface-visibility: hidden;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.gp-murti-myth__q {
  display: flex;
  align-items: center;
  background: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.35;
  color: var(--gp-ink);
}

.gp-murti-myth__a {
  display: grid;
  gap: 0.35rem;
  align-content: start;
  background: #0b1724;
  color: rgba(238, 245, 255, 0.9);
  font-size: 0.8rem;
  line-height: 1.4;
  transform: rotateY(180deg);
}

.gp-murti-myth__a em {
  font-style: normal;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f0c36a;
}

.gp-murti-myth.is-flipped .gp-murti-myth__q {
  transform: rotateY(180deg);
}

.gp-murti-myth.is-flipped .gp-murti-myth__a {
  transform: rotateY(0deg);
}

.gp-murti-matrix__hint {
  margin: -0.35rem 0 0.75rem;
  color: var(--gp-muted);
  font-size: 0.9rem;
}

.gp-murti-matrix__tog {
  display: inline-flex;
  gap: 0.3rem;
  margin-bottom: 0.85rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(11, 23, 36, 0.06);
  border: 1px solid var(--gp-line);
}

.gp-murti-matrix__tog button {
  padding: 0.4rem 0.9rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gp-muted);
  cursor: pointer;
}

.gp-murti-matrix__tog button.is-active {
  background: #0b1724;
  color: #f0c36a;
}

.gp-murti-matrix[data-emphasize="abstract"] .gp-col-ico {
  opacity: 0.28;
}

.gp-murti-matrix[data-emphasize="iconic"] .gp-col-abs {
  opacity: 0.28;
}

.gp-murti-matrix[data-emphasize="abstract"] .gp-col-abs,
.gp-murti-matrix[data-emphasize="iconic"] .gp-col-ico {
  background: color-mix(in srgb, #f0c36a 10%, transparent);
}

@media (max-width: 900px) {
  .gp-murti-hero-viz {
    right: 50%;
    top: 18%;
    transform: translate(50%, 0);
    opacity: 0.4;
    scale: 0.88;
  }
  .gp-murti-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gp-murti-hero-viz__lens,
  .gp-murti-hero-viz__beam,
  .gp-murti-cons-viz__aura,
  .gp-murti-myth__q,
  .gp-murti-myth__a,
  .gp-murti-meter__track i {
    animation: none;
    transition: none;
  }
}

/* ── Directional theology / Sarva-vyāpī article ── */

.gp-article-hero--dir {
  background:
    linear-gradient(180deg, rgba(8, 18, 28, 0.15) 0%, rgba(8, 18, 28, 0.86) 58%, #08121c 100%),
    radial-gradient(ellipse 48% 52% at 22% 40%, rgba(56, 189, 248, 0.22), transparent 58%),
    radial-gradient(ellipse 42% 48% at 80% 38%, rgba(240, 195, 106, 0.2), transparent 60%),
    linear-gradient(145deg, #0b1724 0%, #132536 55%, #0a1620 100%);
}

.gp-dir-hero-viz {
  position: absolute;
  right: max(4%, calc(48% - 200px));
  top: 48%;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  transform: translateY(-50%);
  pointer-events: none;
}

.gp-dir-hero-viz__globe {
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(147, 197, 253, 0.55);
  color: #93c5fd;
  font-size: 1.5rem;
  animation: gpDirSpin 14s linear infinite;
}

.gp-dir-hero-viz__beam {
  width: 2.4rem;
  height: 2px;
  background: linear-gradient(90deg, #38bdf8, #f0c36a);
}

.gp-dir-hero-viz__om {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #f0c36a, #c9922e);
  color: #0b1724;
  font-size: 1.25rem;
  font-weight: 700;
}

@keyframes gpDirSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.gp-dir-labs {
  display: grid;
  gap: 1.35rem;
  margin: 0 0 2rem;
}

.gp-dir-lab {
  padding: 1.25rem 1.2rem 1.4rem;
  border-radius: 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
  border: 1px solid var(--gp-line);
  box-shadow: 0 16px 36px rgba(11, 23, 36, 0.07);
}

.gp-dir-lab__head {
  max-width: 44rem;
  margin-bottom: 1rem;
}

.gp-dir-lab__head h2 {
  margin: 0.15rem 0 0.4rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
}

.gp-dir-lab__head p,
.gp-dir-lab__note {
  margin: 0;
  color: var(--gp-muted);
  line-height: 1.45;
  font-size: 0.95rem;
}

.gp-dir-lab__note {
  margin-top: 0.85rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.75rem;
  background: rgba(11, 23, 36, 0.04);
  border-left: 3px solid var(--gp-warm);
}

.gp-dir-earth-controls,
.gp-dir-omni-modes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  margin-bottom: 1rem;
}

.gp-dir-ctrl {
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--gp-line);
  background: #fff;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gp-muted);
  cursor: pointer;
}

.gp-dir-ctrl.is-active {
  background: #0b1724;
  border-color: #0b1724;
  color: #f0c36a;
}

.gp-dir-speed {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gp-muted);
}

.gp-dir-speed input {
  width: 7rem;
}

.gp-dir-earth-stage {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .gp-dir-earth-stage {
    grid-template-columns: 1.2fr 0.9fr;
    align-items: stretch;
  }
}

.gp-dir-space {
  position: relative;
  min-height: 280px;
  border-radius: 1rem;
  background:
    radial-gradient(circle at 30% 20%, rgba(56, 189, 248, 0.15), transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(240, 195, 106, 0.08), transparent 45%),
    #0b1724;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.gp-dir-globe {
  --gp-earth-rot: 0deg;
  position: relative;
  width: min(72vw, 220px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #7dd3fc, transparent 42%),
    linear-gradient(160deg, #0c4a6e 0%, #14532d 42%, #1e3a5f 70%, #0f766e 100%);
  box-shadow:
    inset -18px -10px 28px rgba(0, 0, 0, 0.35),
    0 0 0 3px rgba(147, 197, 253, 0.25),
    0 20px 40px rgba(0, 0, 0, 0.35);
  transform: rotate(var(--gp-earth-rot));
  transition: transform 0.05s linear;
}

.gp-dir-globe.is-paused {
  transition: none;
}

.gp-dir-globe__grid {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 18%,
      rgba(255, 255, 255, 0.08) 18% 19%
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0 18%,
      rgba(255, 255, 255, 0.06) 18% 19%
    );
  opacity: 0.7;
  mask-image: radial-gradient(circle, #000 58%, transparent 72%);
}

.gp-dir-obs {
  position: absolute;
  left: 50%;
  width: 0;
  height: 0;
}

.gp-dir-obs--a {
  top: 12%;
  transform: translateX(-50%);
}

.gp-dir-obs--b {
  bottom: 12%;
  transform: translateX(-50%) rotate(180deg);
}

.gp-dir-obs__dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 0.7rem;
  height: 0.7rem;
  margin: -0.35rem 0 0 -0.35rem;
  border-radius: 50%;
  background: #f0c36a;
  box-shadow: 0 0 0 3px rgba(240, 195, 106, 0.35);
}

.gp-dir-obs__arrow {
  position: absolute;
  left: 50%;
  bottom: 100%;
  margin: 0 0 0.35rem -0.55rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fef3c7;
  text-shadow: 0 0 8px rgba(240, 195, 106, 0.8);
  animation: gpDirArrow 1.6s ease-in-out infinite;
}

.gp-dir-obs--b .gp-dir-obs__arrow {
  animation-delay: 0.3s;
}

@keyframes gpDirArrow {
  0%, 100% { transform: translateY(0); opacity: 0.75; }
  50% { transform: translateY(-4px); opacity: 1; }
}

.gp-dir-obs__tag {
  position: absolute;
  left: 0.85rem;
  top: -0.35rem;
  white-space: nowrap;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(238, 245, 255, 0.85);
}

.gp-dir-obs--b .gp-dir-obs__tag {
  transform: rotate(180deg);
  left: auto;
  right: 0.85rem;
}

.gp-dir-earth-readout {
  padding: 1.1rem 1.15rem;
  border-radius: 1rem;
  background: #0b1724;
  color: rgba(238, 245, 255, 0.9);
}

.gp-dir-earth-readout .gp-kicker {
  color: #f0c36a;
}

.gp-dir-earth-readout p {
  margin: 0 0 0.45rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.gp-dir-earth-delta {
  margin-top: 0.65rem !important;
  padding: 0.55rem 0.7rem;
  border-radius: 0.55rem;
  background: rgba(240, 195, 106, 0.14);
  border: 1px solid rgba(240, 195, 106, 0.3);
  font-weight: 700;
  color: #f0c36a !important;
}

.gp-dir-earth-readout .gp-dir-lab__note {
  background: rgba(255, 255, 255, 0.06);
  border-left-color: #38bdf8;
  color: rgba(238, 245, 255, 0.82);
}

.gp-dir-omni-stage {
  padding: 1rem;
  border-radius: 1rem;
  background: #0b1724;
}

.gp-dir-omni-wheel {
  --n: 11;
  position: relative;
  width: min(100%, 320px);
  aspect-ratio: 1;
  margin: 0.5rem auto 1rem;
}

.gp-dir-omni-center {
  position: absolute;
  inset: 36%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #f0c36a, #c9922e);
  color: #0b1724;
  font-size: 1.6rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(240, 195, 106, 0.18);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.gp-dir-omni-ray {
  --i: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3.4rem;
  margin: -0.85rem 0 0 -1.7rem;
  padding: 0.35rem 0.25rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(147, 197, 253, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(238, 245, 255, 0.55);
  font-size: 0.62rem;
  font-weight: 700;
  text-align: center;
  transform: rotate(calc((360deg / var(--n)) * var(--i) - 90deg))
    translate(7.2rem)
    rotate(calc(-1 * ((360deg / var(--n)) * var(--i) - 90deg)));
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, opacity 0.35s ease;
}

.gp-dir-omni-stage[data-mode="one_way"] .gp-dir-omni-ray {
  opacity: 0.25;
}

.gp-dir-omni-stage[data-mode="one_way"] .gp-dir-omni-ray[data-dir="E"] {
  opacity: 1;
  background: rgba(240, 195, 106, 0.25);
  border-color: #f0c36a;
  color: #f0c36a;
}

.gp-dir-omni-stage[data-mode="one_way"] .gp-dir-omni-center {
  box-shadow: 0 0 0 4px rgba(240, 195, 106, 0.2);
  transform: scale(0.92);
}

.gp-dir-omni-stage[data-mode="omni"] .gp-dir-omni-ray {
  opacity: 1;
  background: rgba(56, 189, 248, 0.18);
  border-color: rgba(125, 211, 252, 0.55);
  color: #e0f2fe;
}

.gp-dir-omni-stage[data-mode="omni"] .gp-dir-omni-ray[data-dir="Within"] {
  background: rgba(240, 195, 106, 0.28);
  border-color: #f0c36a;
  color: #f0c36a;
}

.gp-dir-omni-stage[data-mode="omni"] .gp-dir-omni-center {
  box-shadow: 0 0 0 10px rgba(240, 195, 106, 0.22), 0 0 40px rgba(56, 189, 248, 0.35);
  animation: gpMurtiPulse 3s ease-in-out infinite;
}

.gp-dir-omni-stage .gp-dir-lab__note {
  background: rgba(255, 255, 255, 0.06);
  border-left-color: #f0c36a;
  color: rgba(238, 245, 255, 0.85);
}

.gp-dir-omni-framework {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(238, 245, 255, 0.78);
}

.gp-dir-dims {
  margin: 0 0 1.75rem;
}

.gp-dir-dims h2 {
  font-family: "Fraunces", Georgia, serif;
}

.gp-dir-dims ul {
  margin: 0.65rem 0 0;
  padding-left: 1.1rem;
  color: var(--gp-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.gp-dir-refs {
  margin: 0 0 2rem;
  padding: 1.5rem 1.25rem 1.6rem;
  border-radius: 1.25rem;
  background:
    linear-gradient(160deg, #0b1724 0%, #132a3d 55%, #0d1f2d 100%);
  border: 1px solid rgba(240, 195, 106, 0.35);
  box-shadow: 0 0 0 1px rgba(240, 195, 106, 0.08), 0 22px 48px rgba(0, 0, 0, 0.18);
  color: rgba(238, 245, 255, 0.92);
}

.gp-dir-refs header {
  max-width: 40rem;
  margin-bottom: 1.25rem;
}

.gp-dir-refs .gp-kicker {
  color: #f0c36a;
}

.gp-dir-refs h2 {
  margin: 0.2rem 0 0.45rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  color: #fff;
}

.gp-dir-refs header p:last-child {
  margin: 0;
  color: rgba(238, 245, 255, 0.7);
  line-height: 1.45;
}

.gp-dir-ref-list {
  display: grid;
  gap: 0.9rem;
}

.gp-dir-ref {
  padding: 1.05rem 1.1rem;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(240, 195, 106, 0.22);
}

.gp-dir-ref__src {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.85rem;
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
}

.gp-dir-ref__src strong {
  color: #f0c36a;
}

.gp-dir-ref__src span {
  color: rgba(238, 245, 255, 0.55);
}

.gp-dir-ref__sa {
  margin: 0 0 0.45rem;
  font-family: "Noto Sans Devanagari", "Fraunces", serif;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #fff;
}

.gp-dir-ref__tr {
  margin: 0 0 0.55rem;
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(147, 197, 253, 0.9);
  line-height: 1.45;
}

.gp-dir-ref__mean {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(238, 245, 255, 0.8);
}

@media (max-width: 900px) {
  .gp-dir-hero-viz {
    right: 50%;
    top: 18%;
    transform: translate(50%, 0);
    opacity: 0.4;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gp-dir-hero-viz__globe,
  .gp-dir-obs__arrow,
  .gp-dir-omni-stage[data-mode="omni"] .gp-dir-omni-center {
    animation: none;
  }
  .gp-dir-globe {
    transition: none;
  }
}

/* ── Śaraṇāgati / slavery–surrender article ── */

.gp-article-hero--sharan {
  background:
    linear-gradient(180deg, rgba(12, 8, 10, 0.2) 0%, rgba(12, 8, 10, 0.78) 55%, #0c080a 100%),
    radial-gradient(ellipse 70% 55% at 72% 22%, rgba(180, 83, 9, 0.45), transparent 58%),
    linear-gradient(135deg, #1a0f12 0%, #3b1d12 48%, #0f172a 100%);
}

.gp-sharan-hero-viz {
  position: absolute;
  right: max(4%, calc(50% - 480px));
  top: 42%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--gp-display, Fraunces, Georgia, serif);
  opacity: 0.92;
}

.gp-sharan-hero-viz__chain,
.gp-sharan-hero-viz__free {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: rgba(254, 243, 199, 0.85);
}

.gp-sharan-hero-viz__om {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 35% 30%, #fbbf24, #b45309 70%);
  color: #1a1008;
  font-size: 1.35rem;
  box-shadow: 0 0 40px rgba(251, 191, 36, 0.45);
  animation: gpSharanPulse 3.2s ease-in-out infinite;
}

.gp-sharan-hero-viz__beam {
  width: 2.5rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(248, 113, 113, 0.15), rgba(251, 191, 36, 0.85));
}

.gp-sharan-hero-viz__beam--out {
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.85), rgba(167, 243, 208, 0.35));
}

@keyframes gpSharanPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.gp-sharan-labs {
  display: grid;
  gap: 1.75rem;
  margin: 2rem 0 2.5rem;
}

.gp-sharan-lab {
  border: 1px solid rgba(251, 191, 36, 0.22);
  border-radius: 16px;
  padding: 1.25rem 1.35rem 1.5rem;
  background: linear-gradient(165deg, rgba(30, 20, 16, 0.92), rgba(15, 18, 28, 0.95));
  color: #f8fafc;
}

.gp-sharan-lab__head {
  margin-bottom: 1rem;
}

.gp-sharan-lab__head h2 {
  margin: 0.25rem 0 0.5rem;
  font-family: var(--gp-display, Fraunces, Georgia, serif);
  font-size: 1.35rem;
}

.gp-sharan-lab__head p,
.gp-sharan-lab__note {
  margin: 0;
  color: rgba(248, 250, 252, 0.72);
  line-height: 1.5;
  font-size: 0.95rem;
}

.gp-sharan-lab__note {
  margin-top: 1rem;
  padding: 0.75rem 0.9rem;
  border-left: 3px solid rgba(251, 191, 36, 0.55);
  background: rgba(0, 0, 0, 0.22);
  border-radius: 0 10px 10px 0;
}

.gp-sharan-modes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.gp-sharan-mode {
  flex: 1 1 140px;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(251, 191, 36, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(248, 250, 252, 0.78);
  cursor: pointer;
  font: inherit;
  font-size: 0.85rem;
}

.gp-sharan-mode.is-active {
  background: #fbbf24;
  color: #1a1008;
  border-color: transparent;
  font-weight: 600;
}

.gp-sharan-meters {
  display: grid;
  gap: 0.75rem;
}

.gp-sharan-meter__label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
  color: rgba(248, 250, 252, 0.75);
}

.gp-sharan-meter__track {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.gp-sharan-meter__track i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #f87171, #fb923c);
  transition: width 0.45s ease;
}

.gp-sharan-meter__track--good i {
  background: linear-gradient(90deg, #34d399, #fbbf24);
}

.gp-sharan-meter__track--warn i {
  background: linear-gradient(90deg, #f87171, #ef4444);
}

.gp-sharan-meter__track--warm i {
  background: linear-gradient(90deg, #fbbf24, #a7f3d0);
}

.gp-sharan-pipeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.gp-sharan-pipeline__node {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
  opacity: 0.55;
  transition: opacity 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.gp-sharan-pipeline__node.is-lens {
  border-color: rgba(251, 191, 36, 0.45);
}

.gp-sharan-pipeline__node.is-glow {
  opacity: 1;
  background: rgba(251, 191, 36, 0.18);
  box-shadow: 0 0 18px rgba(251, 191, 36, 0.25);
}

.gp-sharan-pipeline__node.is-dim {
  opacity: 0.28;
}

.gp-sharan-pipeline__beam {
  width: 1.6rem;
  height: 2px;
  background: rgba(251, 191, 36, 0.35);
}

.gp-sharan-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.5rem;
}

.gp-sharan-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  padding: 0.65rem 0.55rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.gp-sharan-step__num {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
}

.gp-sharan-step strong {
  font-size: 0.85rem;
}

.gp-sharan-step em {
  font-size: 0.7rem;
  color: rgba(248, 250, 252, 0.55);
  font-style: normal;
}

.gp-sharan-step.is-active {
  border-color: rgba(251, 191, 36, 0.55);
  background: rgba(251, 191, 36, 0.12);
}

.gp-sharan-step.is-active .gp-sharan-step__num {
  background: #fbbf24;
  color: #1a1008;
}

.gp-sharan-dial-viz {
  position: relative;
  height: 120px;
  margin: 1.25rem 0 0.5rem;
  border-radius: 14px;
  background:
    radial-gradient(ellipse at 50% 80%, rgba(251, 191, 36, 0.18), transparent 55%),
    rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.gp-sharan-dial-viz__chariot {
  position: absolute;
  left: 12%;
  bottom: 28%;
  width: 52px;
  height: 28px;
  border-radius: 8px 14px 6px 6px;
  background: linear-gradient(180deg, #fcd34d, #92400e);
  transition: left 0.45s ease, transform 0.45s ease;
}

.gp-sharan-dial-viz__bond {
  position: absolute;
  left: 22%;
  right: 28%;
  top: 48%;
  height: 2px;
  background: linear-gradient(90deg, rgba(248, 113, 113, 0.2), rgba(251, 191, 36, 0.75), rgba(52, 211, 153, 0.45));
  transform-origin: left center;
  transition: opacity 0.4s ease, transform 0.45s ease;
}

.gp-sharan-dial-viz__om {
  position: absolute;
  right: 14%;
  top: 38%;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fbbf24;
  color: #1a1008;
  font-size: 1.1rem;
  box-shadow: 0 0 24px rgba(251, 191, 36, 0.4);
  transition: transform 0.45s ease;
}

.gp-sharan-dial-viz[data-step="0"] .gp-sharan-dial-viz__chariot { left: 10%; transform: translateY(6px); opacity: 0.7; }
.gp-sharan-dial-viz[data-step="0"] .gp-sharan-dial-viz__bond { opacity: 0.25; transform: scaleX(0.4); }
.gp-sharan-dial-viz[data-step="1"] .gp-sharan-dial-viz__chariot { left: 22%; }
.gp-sharan-dial-viz[data-step="1"] .gp-sharan-dial-viz__bond { opacity: 0.55; transform: scaleX(0.65); }
.gp-sharan-dial-viz[data-step="2"] .gp-sharan-dial-viz__chariot { left: 36%; }
.gp-sharan-dial-viz[data-step="2"] .gp-sharan-dial-viz__bond { opacity: 0.85; transform: scaleX(0.85); }
.gp-sharan-dial-viz[data-step="3"] .gp-sharan-dial-viz__chariot { left: 48%; }
.gp-sharan-dial-viz[data-step="3"] .gp-sharan-dial-viz__bond { opacity: 1; transform: scaleX(1); }
.gp-sharan-dial-viz[data-step="3"] .gp-sharan-dial-viz__om { transform: scale(1.08); }
.gp-sharan-dial-viz[data-step="4"] .gp-sharan-dial-viz__chariot { left: 58%; }
.gp-sharan-dial-viz[data-step="4"] .gp-sharan-dial-viz__bond { opacity: 1; }
.gp-sharan-dial-viz[data-step="4"] .gp-sharan-dial-viz__om {
  transform: scale(1.12);
  box-shadow: 0 0 36px rgba(167, 243, 208, 0.55);
}

.gp-sharan-limbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.gp-sharan-limb {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.7rem 0.65rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.gp-sharan-limb__glyph {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  background: rgba(251, 191, 36, 0.2);
}

.gp-sharan-limb strong { font-size: 0.88rem; }
.gp-sharan-limb em {
  font-size: 0.72rem;
  color: rgba(248, 250, 252, 0.55);
  font-style: normal;
}

.gp-sharan-limb.is-active,
.gp-sharan-limb:hover {
  border-color: rgba(251, 191, 36, 0.5);
  background: rgba(251, 191, 36, 0.1);
}

.gp-sharan-limb-detail {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.28);
}

.gp-sharan-limb-detail h3 {
  margin: 0.2rem 0 0.45rem;
  font-family: var(--gp-display, Fraunces, Georgia, serif);
}

.gp-sharan-myths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.gp-sharan-myth {
  position: relative;
  min-height: 150px;
  perspective: 900px;
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  color: inherit;
  font: inherit;
}

.gp-sharan-myth__q,
.gp-sharan-myth__a {
  position: absolute;
  inset: 0;
  padding: 1rem;
  border-radius: 14px;
  backface-visibility: hidden;
  transition: transform 0.55s ease;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.gp-sharan-myth__q {
  background: rgba(30, 20, 16, 0.95);
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1.35;
}

.gp-sharan-myth__a {
  background: rgba(15, 23, 42, 0.96);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.88rem;
  line-height: 1.4;
  overflow: auto;
}

.gp-sharan-myth__a em {
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fbbf24;
  margin-top: 0.25rem;
}

.gp-sharan-myth.is-flipped .gp-sharan-myth__q { transform: rotateY(180deg); }
.gp-sharan-myth.is-flipped .gp-sharan-myth__a { transform: rotateY(0); }

.gp-sharan-matrix__hint {
  color: rgba(15, 23, 42, 0.65);
  margin: 0 0 0.75rem;
}

.gp-sharan-matrix__tog {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.gp-sharan-matrix__tog button {
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.85rem;
}

.gp-sharan-matrix__tog button.is-active {
  background: #b45309;
  color: #fff;
  border-color: transparent;
}

.gp-sharan-matrix[data-emphasize="slavery"] .gp-col-sharan { opacity: 0.35; }
.gp-sharan-matrix[data-emphasize="sharan"] .gp-col-slave { opacity: 0.35; }
.gp-sharan-matrix[data-emphasize="slavery"] .gp-col-slave,
.gp-sharan-matrix[data-emphasize="sharan"] .gp-col-sharan {
  opacity: 1;
  outline: 2px solid rgba(180, 83, 9, 0.35);
}

.gp-sharan-sanskrit {
  font-family: "Noto Sans Devanagari", serif;
  line-height: 1.55;
  color: rgba(15, 23, 42, 0.82);
}

@media (max-width: 900px) {
  .gp-sharan-hero-viz {
    right: 50%;
    top: 16%;
    transform: translate(50%, 0);
    opacity: 0.4;
  }
  .gp-sharan-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gp-sharan-limbs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gp-sharan-myths { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .gp-sharan-hero-viz__om,
  .gp-sharan-meter__track i,
  .gp-sharan-myth__q,
  .gp-sharan-myth__a,
  .gp-sharan-dial-viz__chariot,
  .gp-sharan-dial-viz__bond,
  .gp-sharan-dial-viz__om {
    animation: none;
    transition: none;
  }
}
