/* ═══════════════════════════════════════════════════════
   PATHNUMBERS - LIFE PATH COMPATIBILITY (HUB + PAIR)
   Adapted from lp1-compat-styles.css and lp1x2-styles.css
   design package. Scoped under .lifepathcompat-page (same
   body class for both hub and pair pages). Uses
   --lp-signature* tokens injected per-page by SignatureVars.astro.

   Hub  URLs:  /life-path-N-compatibility/
   Pair URLs:  /life-path-N-and-M-compatibility/

   - Reuses utility classes from life-path-page.css
     (.shell, .shell-wide, .section, .sec-head, .h-eyebrow,
      .h-section, .h-section-white, .h-section-purple,
      .h-sub, .fade-up, .glow-num, .glow-c-*, .btn-primary,
      .btn-ghost, .bullet-list, .prose, .h-card-title,
      .nav, .foot, .breadcrumbs)
   - rgba() literals matching LP1 burgundy/rose are replaced
     with color-mix() against --lp-signature
   - Gold, violet, crimson stay literal where they encode
     fixed semantic meaning (Light band always gold, Shadow
     band always crimson, "for both" always violet)
═══════════════════════════════════════════════════════ */

/* Page-scoped constants. These do NOT vary by Life Path number.
   The page accent (--lp-signature, --lp-signature-bright, etc.)
   varies per Life Path - see SignatureVars.astro. */
.lifepathcompat-page {
  --lp-gold:         #FFD93D;
  --lp-gold-2:       #FFE066;
  --lp-gold-soft:    #FCD34D;
  --lp-gold-glow:    rgba(255, 217, 61, 0.45);

  --lp-violet:       #B794F4;
  --lp-violet-2:     #C4B5FD;
  --lp-violet-deep:  #6B46C1;
  --lp-violet-glow:  rgba(183, 148, 244, 0.45);

  --lp-crimson:      #E11D48;
  --lp-crimson-2:    #BE123C;
  --lp-crimson-3:    #9F1239;
  --lp-crimson-bright:#FB7185;
  --lp-crimson-glow: rgba(225, 29, 72, 0.45);

  --lp-burgundy-bg:  #1A0710;

  /* Companion-side palette for pair pages (the partner column).
     Soft blue, like LP2, but used as a generic "other side"
     accent so a 3x5 pair page can also lean on this. */
  --lp-partner:        #93C5FD;
  --lp-partner-base:   #60A5FA;
  --lp-partner-deep:   #2563EB;
  --lp-partner-glow:   rgba(96, 165, 250, 0.45);
  --lp-partner-glow-soft: rgba(96, 165, 250, 0.18);

  /* "For both" violet (conflict cards, soft inline CTAs) */
  --lp-both:           #C4B5FD;
  --lp-both-base:      #A78BFA;
  --lp-both-glow:      rgba(167, 139, 250, 0.45);
}

/* ═══════════════════════════════════════════════════════
   BREADCRUMBS (full layout — life-path-page.css does not
   define one, and core base.css doesn't either. Mirrors
   the personal-year-page.css pattern.)
═══════════════════════════════════════════════════════ */
.lifepathcompat-page .breadcrumbs {
  font-size: 12px;
  color: var(--text-4);
  letter-spacing: 0.04em;
  padding: 22px 28px 0;
  max-width: 1320px;
  margin: 0 auto;
}
.lifepathcompat-page .breadcrumbs a {
  color: var(--text-3);
  text-decoration: none;
  transition: color 160ms;
}
.lifepathcompat-page .breadcrumbs a:hover { color: var(--lp-signature-bright); }
.lifepathcompat-page .breadcrumbs .sep { margin: 0 8px; color: var(--text-dim); }
.lifepathcompat-page .breadcrumbs .current { color: var(--lp-signature-bright); }

/* ═══════════════════════════════════════════════════════
   HERO ITALIC SUB (subtitle directly under H1, italic
   serif, signature-tinted)
═══════════════════════════════════════════════════════ */
.lifepathcompat-page .hero-italic-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.4;
  color: var(--lp-signature-bright);
  margin: 0 0 24px;
  max-width: 50ch;
  text-wrap: balance;
}
@media (max-width: 900px) {
  .lifepathcompat-page .hero-italic-sub { margin-left: auto; margin-right: auto; }
}

/* ═══════════════════════════════════════════════════════
   HERO COUPLE CALCULATOR (two birth-date rows + button)
   The design's hero-calc styles lived in py7-extra.css; we
   port them here under the .lifepathcompat-page scope and
   add the LP-compat-specific .hero-calc-person rows.
═══════════════════════════════════════════════════════ */
.lifepathcompat-page .hero-calc {
  margin-top: 28px;
  padding: 22px 22px 18px;
  border: 1px solid color-mix(in srgb, var(--lp-signature) 25%, transparent);
  border-radius: 18px;
  background: rgba(7, 6, 26, 0.6);
  backdrop-filter: blur(14px);
}
.lifepathcompat-page .hero-calc-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lp-signature);
  margin-bottom: 14px;
}
.lifepathcompat-page .hero-calc-person {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 6px;
}
.lifepathcompat-page .hero-calc-person-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--lp-signature) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--lp-signature) 40%, transparent);
  color: var(--lp-signature-bright);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  flex-shrink: 0;
}
.lifepathcompat-page .hero-calc-person-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
}
.lifepathcompat-page .hero-calc-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.lifepathcompat-page .hero-calc-row-b {
  grid-template-columns: 1fr 1fr 1fr auto;
}
@media (max-width: 600px) {
  .lifepathcompat-page .hero-calc-row { grid-template-columns: 1fr 1fr; }
  .lifepathcompat-page .hero-calc-row-b { grid-template-columns: 1fr 1fr; }
  .lifepathcompat-page .hero-calc-row > input:nth-child(3) { grid-column: 1 / -1; }
  .lifepathcompat-page .hero-calc-row > button { grid-column: 1 / -1; }
}
.lifepathcompat-page .hero-calc-input {
  padding: 12px 14px;
  background: rgba(7, 6, 26, 0.7);
  border: 1px solid color-mix(in srgb, var(--lp-signature) 25%, transparent);
  border-radius: 10px;
  font-size: 14px;
  color: var(--text-1);
  font-family: var(--font-body);
  outline: none;
  transition: border-color 160ms, box-shadow 160ms;
  width: 100%;
}
.lifepathcompat-page .hero-calc-input::placeholder { color: var(--text-4); }
.lifepathcompat-page .hero-calc-input:focus {
  border-color: var(--lp-signature);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--lp-signature) 12%, transparent);
}
.lifepathcompat-page .hero-calc-go {
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--lp-signature-bright), var(--lp-signature));
  color: var(--bg-0);
  border: none;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 200ms, box-shadow 200ms;
  box-shadow: 0 0 22px var(--lp-signature-glow-soft);
  cursor: pointer;
}
.lifepathcompat-page .hero-calc-go:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 32px var(--lp-signature-glow);
}
.lifepathcompat-page .hero-calc-result {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14.5px;
  line-height: 1.5;
  background: color-mix(in srgb, var(--lp-signature) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--lp-signature) 30%, transparent);
  color: var(--text-1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.lifepathcompat-page .hero-calc-result[hidden] { display: none; }
.lifepathcompat-page .hero-calc-result.off {
  background: color-mix(in srgb, var(--lp-violet) 6%, transparent);
  border-color: color-mix(in srgb, var(--lp-violet) 30%, transparent);
}
.lifepathcompat-page .hero-calc-result-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  color: var(--lp-signature-bright);
}
.lifepathcompat-page .hero-calc-result.off .hero-calc-result-num { color: var(--lp-violet); }
.lifepathcompat-page .hero-calc-result a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-signature-bright);
  text-decoration: none;
}
.lifepathcompat-page .hero-calc-result.off a { color: var(--lp-violet); }

/* ═══════════════════════════════════════════════════════
   SECTION HEADING GRADIENTS (rose, blue, gold, crimson)
═══════════════════════════════════════════════════════ */
.lifepathcompat-page .h-section-rose {
  background: linear-gradient(180deg, #FBA1A8 0%, #FB7185 45%, #E11D48 80%, #9F1239 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 60px rgba(225, 29, 72, 0.35);
}
.lifepathcompat-page .h-section-blue {
  background: linear-gradient(180deg, #BFDBFE 0%, #93C5FD 50%, #60A5FA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 60px rgba(96, 165, 250, 0.35);
}
.lifepathcompat-page .h-section-gold {
  background: linear-gradient(180deg, #FFE066 0%, #FFD93D 55%, #C29200 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 60px rgba(255, 217, 61, 0.30);
}
.lifepathcompat-page .h-section-crimson {
  background: linear-gradient(180deg, #FB7185 0%, #E11D48 60%, #9F1239 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 60px rgba(225, 29, 72, 0.35);
}
.lifepathcompat-page .h-eyebrow-gold    { color: var(--lp-gold); }
.lifepathcompat-page .h-eyebrow-crimson { color: var(--lp-crimson-bright); }
.lifepathcompat-page .h-eyebrow-blue    { color: var(--lp-partner); }
.lifepathcompat-page .h-eyebrow-both    { color: var(--lp-both); }

/* Italic sub-heading under section headers (used widely) */
.lifepathcompat-page .h-italic-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 1.9vw, 24px);
  line-height: 1.4;
  color: var(--text-2);
  text-align: center;
  max-width: 60ch;
  margin: 18px auto 0;
  text-wrap: balance;
}
.lifepathcompat-page .sec-head .h-italic-sub        { color: var(--lp-signature-bright); }
.lifepathcompat-page .sec-head .h-italic-sub.warm   { color: var(--lp-gold); }
.lifepathcompat-page .sec-head .h-italic-sub.cold   { color: var(--lp-signature-bright); }
.lifepathcompat-page .sec-head .h-italic-sub.blue   { color: var(--lp-partner); }
.lifepathcompat-page .sec-head .h-italic-sub.both   { color: var(--lp-both); }
.lifepathcompat-page .h-italic-sub-small {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.4;
  color: var(--lp-signature-bright);
  margin-top: 8px;
  text-wrap: balance;
}

/* ═══════════════════════════════════════════════════════
   HUB HERO - stat pills row (3 across, below calc)
═══════════════════════════════════════════════════════ */
.lifepathcompat-page .stat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.lifepathcompat-page .stat-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(15, 13, 46, 0.6);
  border: 1px solid var(--border-card);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.01em;
}
.lifepathcompat-page .stat-pill-k {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-4);
}
.lifepathcompat-page .stat-pill-v {
  color: var(--lp-signature-bright);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
}
.lifepathcompat-page .stat-pill.tone-warm  { border-color: rgba(255, 217, 61, 0.30); }
.lifepathcompat-page .stat-pill.tone-warm  .stat-pill-v { color: var(--lp-gold); }
.lifepathcompat-page .stat-pill.tone-cold  { border-color: color-mix(in srgb, var(--lp-signature) 35%, transparent); }
.lifepathcompat-page .stat-pill.tone-cold  .stat-pill-v { color: var(--lp-signature-bright); }

/* ═══════════════════════════════════════════════════════
   QUICK ANSWER - Best/Hardest pill blocks (HUB)
═══════════════════════════════════════════════════════ */
.lifepathcompat-page .qa-pillblock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}
@media (max-width: 700px) {
  .lifepathcompat-page .qa-pillblock { grid-template-columns: 1fr; }
}
.lifepathcompat-page .qa-pillblock-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: 14px;
}
.lifepathcompat-page .qa-pillblock-col.warm h4 { color: var(--lp-gold); }
.lifepathcompat-page .qa-pillblock-col.cold h4 { color: var(--lp-signature-bright); }
.lifepathcompat-page .qa-pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.lifepathcompat-page .qa-mini-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
}
.lifepathcompat-page .qa-mini-pill .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}
.lifepathcompat-page .qa-pillblock-col.warm .qa-mini-pill {
  background: rgba(255, 217, 61, 0.08);
  border: 1px solid rgba(255, 217, 61, 0.30);
  color: var(--text-1);
}
.lifepathcompat-page .qa-pillblock-col.warm .qa-mini-pill .num { color: var(--lp-gold); }
.lifepathcompat-page .qa-pillblock-col.cold .qa-mini-pill {
  background: color-mix(in srgb, var(--lp-signature) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--lp-signature) 30%, transparent);
  color: var(--text-1);
}
.lifepathcompat-page .qa-pillblock-col.cold .qa-mini-pill .num { color: var(--lp-signature-bright); }

/* ═══════════════════════════════════════════════════════
   CHARACTER PROSE BLOCK (HUB), MEETING PROSE (PAIR)
═══════════════════════════════════════════════════════ */
.lifepathcompat-page .character-prose,
.lifepathcompat-page .meeting-prose {
  max-width: 760px;
  margin: 0 auto;
}
.lifepathcompat-page .character-prose p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 1.4em;
  text-wrap: pretty;
}
.lifepathcompat-page .meeting-prose p {
  font-size: clamp(17px, 1.7vw, 19px);
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 1.5em;
  text-wrap: pretty;
}
.lifepathcompat-page .character-prose p:last-child,
.lifepathcompat-page .meeting-prose p:last-child { margin-bottom: 0; }
.lifepathcompat-page .character-prose em,
.lifepathcompat-page .meeting-prose em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--lp-signature-bright);
}
.lifepathcompat-page .character-prose strong { color: var(--text-1); font-weight: 600; }

/* ═══════════════════════════════════════════════════════
   STAR RENDERING (shared HUB + PAIR)
═══════════════════════════════════════════════════════ */
.lifepathcompat-page .stars { display: inline-flex; gap: 3px; align-items: center; }
.lifepathcompat-page .star  { width: 14px; height: 14px; }
.lifepathcompat-page .star path { transition: fill 200ms; }
.lifepathcompat-page .star.on path  { fill: var(--lp-gold); }
.lifepathcompat-page .star.off path {
  fill: rgba(255, 255, 255, 0.10);
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 1.2;
}

/* ═══════════════════════════════════════════════════════
   TAG PILLS (rating tone chips)
═══════════════════════════════════════════════════════ */
.lifepathcompat-page .tag-pill {
  display: inline-block;
  padding: 5px 11px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.4;
  white-space: nowrap;
}
.lifepathcompat-page .tag-pill.tone-high {
  background: rgba(34, 211, 238, 0.10);
  color: #67E8F9;
  border: 1px solid rgba(34, 211, 238, 0.35);
}
.lifepathcompat-page .tag-pill.tone-warm {
  background: rgba(255, 217, 61, 0.10);
  color: var(--lp-gold);
  border: 1px solid rgba(255, 217, 61, 0.35);
}
.lifepathcompat-page .tag-pill.tone-mid {
  background: rgba(196, 181, 253, 0.08);
  color: #C4B5FD;
  border: 1px solid rgba(196, 181, 253, 0.30);
}
.lifepathcompat-page .tag-pill.tone-low {
  background: color-mix(in srgb, var(--lp-signature) 10%, transparent);
  color: var(--lp-signature-bright);
  border: 1px solid color-mix(in srgb, var(--lp-signature) 35%, transparent);
}

/* ═══════════════════════════════════════════════════════
   RATINGS TABLE (HUB - all 9 partner pairings)
═══════════════════════════════════════════════════════ */
.lifepathcompat-page .ratings-table-wrap {
  background: var(--bg-card-3);
  border: 1px solid var(--border-card);
  border-radius: 22px;
  overflow: hidden;
}
.lifepathcompat-page .ratings-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
}
.lifepathcompat-page .ratings-table thead th {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-4);
  text-align: left;
  padding: 18px 20px;
  background: rgba(7, 6, 26, 0.5);
  border-bottom: 1px solid var(--border-soft);
}
.lifepathcompat-page .ratings-table thead th:not(:first-child) { text-align: center; }
.lifepathcompat-page .ratings-table thead th:last-child { text-align: right; }
.lifepathcompat-page .ratings-table tbody tr {
  border-bottom: 1px solid var(--border-soft);
  cursor: pointer;
  transition: background 160ms;
}
.lifepathcompat-page .ratings-table tbody tr:last-child { border-bottom: none; }
.lifepathcompat-page .ratings-table tbody tr:hover {
  background: color-mix(in srgb, var(--lp-signature) 4%, transparent);
}
.lifepathcompat-page .ratings-table td {
  padding: 18px 20px;
  font-size: 14.5px;
  color: var(--text-2);
}
.lifepathcompat-page .ratings-table td:not(:first-child) { text-align: center; }
.lifepathcompat-page .ratings-table td:last-child { text-align: right; }
.lifepathcompat-page .ratings-pair {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  color: var(--text-1);
}
.lifepathcompat-page .ratings-pair .plus { color: var(--text-4); font-size: 0.7em; font-weight: 400; }
.lifepathcompat-page .ratings-pair .a {
  color: var(--lp-signature-bright);
  text-shadow: 0 0 12px var(--lp-signature-glow-soft);
}
.lifepathcompat-page .ratings-pair .b { color: var(--text-1); }

/* Mobile - stack table rows as cards */
.lifepathcompat-page .ratings-table-mobile {
  display: none;
  flex-direction: column;
  gap: 12px;
}
.lifepathcompat-page .ratings-row-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 18px 18px;
}
.lifepathcompat-page .ratings-row-card-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-soft);
}
.lifepathcompat-page .ratings-row-card-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
}
.lifepathcompat-page .ratings-row-card-kv {
  display: flex; flex-direction: column; gap: 4px;
}
.lifepathcompat-page .ratings-row-card-k {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-4);
}
@media (max-width: 768px) {
  .lifepathcompat-page .ratings-table-wrap { display: none; }
  .lifepathcompat-page .ratings-table-mobile { display: flex; }
}

/* ═══════════════════════════════════════════════════════
   BEST / HARDEST MATCH HERO CARDS (HUB)
═══════════════════════════════════════════════════════ */
.lifepathcompat-page .match-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .lifepathcompat-page .match-grid { grid-template-columns: 1fr; gap: 16px; }
}

.lifepathcompat-page .match-card {
  position: relative;
  background: var(--bg-card-3);
  border: 1px solid var(--border-card);
  border-radius: 24px;
  padding: 36px 32px 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 240ms;
}
.lifepathcompat-page .match-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 64px -28px rgba(0, 0, 0, 0.4);
}
.lifepathcompat-page .match-card-num {
  position: absolute;
  top: -10px;
  right: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 220px;
  line-height: 0.85;
  letter-spacing: -0.05em;
  pointer-events: none;
  opacity: 0.95;
}

/* Best matches - gold accent */
.lifepathcompat-page .match-card.best {
  background:
    radial-gradient(ellipse 500px 300px at 80% 10%, rgba(255, 217, 61, 0.12) 0%, transparent 65%),
    linear-gradient(160deg, rgba(255, 217, 61, 0.04) 0%, var(--bg-card-3) 60%);
  border-color: rgba(255, 217, 61, 0.28);
}
.lifepathcompat-page .match-card.best:hover { border-color: rgba(255, 217, 61, 0.55); }
.lifepathcompat-page .match-card.best .match-card-num {
  color: var(--lp-gold);
  text-shadow:
    0 0 16px rgba(255, 217, 61, 0.5),
    0 0 48px rgba(255, 217, 61, 0.35),
    0 0 120px rgba(255, 217, 61, 0.25);
}

/* Hardest matches - crimson accent (Shadow band semantic) */
.lifepathcompat-page .match-card.hard {
  background:
    radial-gradient(ellipse 500px 300px at 80% 10%, rgba(225, 29, 72, 0.14) 0%, transparent 65%),
    linear-gradient(160deg, rgba(225, 29, 72, 0.05) 0%, var(--bg-card-3) 60%);
  border-color: rgba(225, 29, 72, 0.32);
}
.lifepathcompat-page .match-card.hard:hover { border-color: rgba(225, 29, 72, 0.60); }
.lifepathcompat-page .match-card.hard .match-card-num {
  color: var(--lp-crimson);
  text-shadow:
    0 0 16px rgba(225, 29, 72, 0.55),
    0 0 48px rgba(225, 29, 72, 0.38),
    0 0 120px rgba(225, 29, 72, 0.25);
}

.lifepathcompat-page .match-card-eyebrow {
  position: relative;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: 90px;
  z-index: 1;
}
.lifepathcompat-page .match-card-header {
  position: relative;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--text-1);
  margin-bottom: 8px;
  z-index: 1;
}
.lifepathcompat-page .match-card-tagline {
  position: relative;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 18px;
  z-index: 1;
}
.lifepathcompat-page .match-card.best .match-card-tagline { color: var(--lp-gold); }
.lifepathcompat-page .match-card.hard .match-card-tagline { color: var(--lp-crimson-bright); }

.lifepathcompat-page .match-card-summary {
  position: relative;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-2);
  margin-bottom: 18px;
  text-wrap: pretty;
  z-index: 1;
}
.lifepathcompat-page .match-card-bullets {
  position: relative;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  z-index: 1;
}
.lifepathcompat-page .match-card-bullets li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-2);
}
.lifepathcompat-page .match-card-bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 6px; height: 6px;
  margin-top: 7px;
  border-radius: 50%;
}
.lifepathcompat-page .match-card.best .match-card-bullets li::before {
  background: var(--lp-gold);
  box-shadow: 0 0 10px rgba(255, 217, 61, 0.45);
}
.lifepathcompat-page .match-card.hard .match-card-bullets li::before {
  background: var(--lp-crimson-bright);
  box-shadow: 0 0 10px rgba(225, 29, 72, 0.45);
}

.lifepathcompat-page .match-card-btn {
  position: relative;
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 200ms;
  width: fit-content;
  z-index: 1;
}
.lifepathcompat-page .match-card.best .match-card-btn {
  color: var(--bg-0);
  background: linear-gradient(135deg, var(--lp-gold-2), var(--lp-gold));
  box-shadow: 0 0 22px rgba(255, 217, 61, 0.30);
}
.lifepathcompat-page .match-card.best .match-card-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(255, 217, 61, 0.50);
}
.lifepathcompat-page .match-card.hard .match-card-btn {
  color: #FFF;
  background: linear-gradient(135deg, var(--lp-crimson-bright), var(--lp-crimson));
  box-shadow: 0 0 22px rgba(225, 29, 72, 0.35);
}
.lifepathcompat-page .match-card.hard .match-card-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 36px rgba(225, 29, 72, 0.55);
}
.lifepathcompat-page .match-card-btn svg { transition: transform 200ms; }
.lifepathcompat-page .match-card-btn:hover svg { transform: translateX(3px); }

/* Inline app link under each match block */
.lifepathcompat-page .inline-app-link {
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  color: var(--text-3);
}
.lifepathcompat-page .inline-app-link a {
  color: var(--lp-signature-bright);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--lp-signature) 40%, transparent);
  padding-bottom: 1px;
  font-weight: 500;
  transition: all 200ms;
}
.lifepathcompat-page .inline-app-link a:hover {
  color: var(--lp-gold-2);
  border-bottom-color: rgba(255, 217, 61, 0.6);
}

/* ═══════════════════════════════════════════════════════
   ALL PAIRINGS - mini-sections (HUB anchors)
═══════════════════════════════════════════════════════ */
.lifepathcompat-page .pairings-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.lifepathcompat-page .pairing-mini {
  scroll-margin-top: 96px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 22px;
  padding: 40px 40px 36px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .lifepathcompat-page .pairing-mini { padding: 28px 24px; }
}
.lifepathcompat-page .pairing-mini::before {
  content: attr(data-partner);
  position: absolute;
  top: -40px;
  right: -10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 240px;
  line-height: 0.85;
  color: color-mix(in srgb, var(--lp-signature) 5%, transparent);
  letter-spacing: -0.05em;
  pointer-events: none;
}
.lifepathcompat-page .pairing-mini.tone-high::before { color: rgba(34, 211, 238, 0.06); }
.lifepathcompat-page .pairing-mini.tone-warm::before { color: rgba(255, 217, 61, 0.06); }
.lifepathcompat-page .pairing-mini.tone-mid::before  { color: rgba(196, 181, 253, 0.06); }
.lifepathcompat-page .pairing-mini.tone-low::before  { color: rgba(225, 29, 72, 0.06); }

.lifepathcompat-page .pairing-mini.tone-high { border-color: rgba(34, 211, 238, 0.30); }
.lifepathcompat-page .pairing-mini.tone-warm { border-color: rgba(255, 217, 61, 0.28); }
.lifepathcompat-page .pairing-mini.tone-low  { border-color: rgba(225, 29, 72, 0.30); }
.lifepathcompat-page .pairing-mini.tone-mid  { border-color: rgba(196, 181, 253, 0.25); }

.lifepathcompat-page .pairing-mini-eyebrow {
  position: relative;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: 12px;
}
.lifepathcompat-page .pairing-mini-eyebrow .num-a { color: var(--lp-signature-bright); }
.lifepathcompat-page .pairing-mini-eyebrow .num-b {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
}
.lifepathcompat-page .pairing-mini.tone-high .pairing-mini-eyebrow .num-b { color: #67E8F9; }
.lifepathcompat-page .pairing-mini.tone-warm .pairing-mini-eyebrow .num-b { color: var(--lp-gold); }
.lifepathcompat-page .pairing-mini.tone-mid  .pairing-mini-eyebrow .num-b { color: #C4B5FD; }
.lifepathcompat-page .pairing-mini.tone-low  .pairing-mini-eyebrow .num-b { color: var(--lp-crimson-bright); }

.lifepathcompat-page .pairing-mini h3 {
  position: relative;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text-1);
  margin-bottom: 10px;
  max-width: 22ch;
  text-wrap: balance;
}
.lifepathcompat-page .pairing-mini-sub {
  position: relative;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.35;
  margin-bottom: 22px;
  max-width: 60ch;
  text-wrap: balance;
}
.lifepathcompat-page .pairing-mini.tone-high .pairing-mini-sub { color: #67E8F9; }
.lifepathcompat-page .pairing-mini.tone-warm .pairing-mini-sub { color: var(--lp-gold); }
.lifepathcompat-page .pairing-mini.tone-mid  .pairing-mini-sub { color: #C4B5FD; }
.lifepathcompat-page .pairing-mini.tone-low  .pairing-mini-sub { color: var(--lp-crimson-bright); }
.lifepathcompat-page .pairing-mini-body {
  position: relative;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 68ch;
  margin-bottom: 26px;
  text-wrap: pretty;
}
.lifepathcompat-page .pairing-mini-body em {
  font-family: var(--font-display);
  font-style: italic;
}
.lifepathcompat-page .pairing-mini.tone-high .pairing-mini-body em { color: #67E8F9; }
.lifepathcompat-page .pairing-mini.tone-warm .pairing-mini-body em { color: var(--lp-gold); }
.lifepathcompat-page .pairing-mini.tone-mid  .pairing-mini-body em { color: #C4B5FD; }
.lifepathcompat-page .pairing-mini.tone-low  .pairing-mini-body em { color: var(--lp-crimson-bright); }

.lifepathcompat-page .pairing-sc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
@media (max-width: 600px) {
  .lifepathcompat-page .pairing-sc { grid-template-columns: 1fr; }
}
.lifepathcompat-page .pairing-sc-col {
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(7, 6, 26, 0.5);
  border: 1px solid var(--border-soft);
}
.lifepathcompat-page .pairing-sc-col.s {
  border-color: rgba(34, 211, 238, 0.25);
  background: rgba(34, 211, 238, 0.04);
}
.lifepathcompat-page .pairing-sc-col.c {
  border-color: rgba(225, 29, 72, 0.25);
  background: rgba(225, 29, 72, 0.04);
}
.lifepathcompat-page .pairing-sc-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 6px;
}
.lifepathcompat-page .pairing-sc-col.s .pairing-sc-label { color: #67E8F9; }
.lifepathcompat-page .pairing-sc-col.c .pairing-sc-label { color: var(--lp-crimson-bright); }
.lifepathcompat-page .pairing-sc-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-1);
}

.lifepathcompat-page .pairing-mini-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none;
  transition: all 200ms;
  background: color-mix(in srgb, var(--lp-signature) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--lp-signature) 35%, transparent);
  color: var(--lp-signature-bright);
}
.lifepathcompat-page .pairing-mini-cta:hover {
  background: color-mix(in srgb, var(--lp-signature) 15%, transparent);
  border-color: var(--lp-signature);
  transform: translateY(-1px);
}
.lifepathcompat-page .pairing-mini-cta svg { transition: transform 200ms; }
.lifepathcompat-page .pairing-mini-cta:hover svg { transform: translateX(3px); }

/* ═══════════════════════════════════════════════════════
   COMMON PATTERNS (HUB editorial band)
═══════════════════════════════════════════════════════ */
.lifepathcompat-page .patterns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  margin-top: 8px;
}
@media (max-width: 900px) {
  .lifepathcompat-page .patterns-grid { grid-template-columns: 1fr; gap: 20px; }
}
.lifepathcompat-page .pattern-col h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 26px;
  line-height: 1.2;
  color: var(--lp-signature-bright);
  margin-bottom: 16px;
  text-wrap: balance;
}
.lifepathcompat-page .pattern-col p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-2);
  text-wrap: pretty;
}
.lifepathcompat-page .pattern-cite {
  margin-top: 36px;
  padding: 22px 26px 22px 64px;
  border-radius: 16px;
  background: rgba(15, 13, 46, 0.55);
  border: 1px solid var(--border-soft);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-1);
  position: relative;
}
.lifepathcompat-page .pattern-cite::before {
  content: '"';
  position: absolute;
  top: 0; left: 18px;
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--lp-signature-bright);
  opacity: 0.6;
}
.lifepathcompat-page .pattern-cite-attr {
  display: block;
  margin-top: 10px;
  font-family: var(--font-head);
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lp-signature-bright);
}

/* ═══════════════════════════════════════════════════════
   LIGHT BAND (always gold + violet, regardless of accent)
═══════════════════════════════════════════════════════ */
.lifepathcompat-page .light-band {
  background:
    radial-gradient(ellipse 1000px 600px at 25% 30%, rgba(255, 217, 61, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse 800px 600px at 80% 70%, rgba(183, 148, 244, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-0) 0%, #100B26 100%);
  position: relative;
}
.lifepathcompat-page .light-band::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 8% 18%,  rgba(255,217,61,0.5) 0.6px, transparent 1.2px),
    radial-gradient(circle at 28% 56%, rgba(255,255,255,0.6) 0.5px, transparent 1.1px),
    radial-gradient(circle at 58% 22%, rgba(255,217,61,0.5) 0.5px, transparent 1.1px),
    radial-gradient(circle at 78% 78%, rgba(255,255,255,0.6) 0.5px, transparent 1.1px),
    radial-gradient(circle at 92% 36%, rgba(183,148,244,0.55) 0.6px, transparent 1.2px);
  opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════
   SHADOW BAND (always crimson + burgundy, regardless of accent)
═══════════════════════════════════════════════════════ */
.lifepathcompat-page .shadow-band-deep {
  background:
    radial-gradient(ellipse 900px 600px at 20% 30%, rgba(159, 18, 57, 0.30) 0%, transparent 55%),
    radial-gradient(ellipse 700px 500px at 85% 80%, rgba(91, 70, 193, 0.22) 0%, transparent 60%),
    linear-gradient(180deg, var(--lp-burgundy-bg) 0%, #0A0410 100%);
  position: relative;
}
.lifepathcompat-page .shadow-band-deep::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 14% 22%, rgba(225,29,72,0.45) 0.6px, transparent 1.2px),
    radial-gradient(circle at 48% 58%, rgba(255,255,255,0.4) 0.5px, transparent 1px),
    radial-gradient(circle at 78% 28%, rgba(225,29,72,0.4) 0.5px, transparent 1.1px),
    radial-gradient(circle at 88% 68%, rgba(255,255,255,0.4) 0.5px, transparent 1px);
  opacity: 0.5;
}

/* ═══════════════════════════════════════════════════════
   LIGHT / SHADOW PAIR CARD (PAIR page: composed numerals)
═══════════════════════════════════════════════════════ */
.lifepathcompat-page .pair-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
}
@media (max-width: 900px) {
  .lifepathcompat-page .pair-card { grid-template-columns: 1fr; }
}
.lifepathcompat-page .pair-card-emblem {
  display: flex; align-items: center; justify-content: center;
  min-height: 380px;
  padding: 40px;
  position: relative;
}
@media (max-width: 900px) {
  .lifepathcompat-page .pair-card-emblem {
    min-height: 260px;
    border-right: none;
    border-bottom: 1px solid;
  }
}
.lifepathcompat-page .pair-card.light {
  background: linear-gradient(160deg, rgba(255, 217, 61, 0.05) 0%, var(--bg-card-3) 60%);
  border: 1px solid rgba(255, 217, 61, 0.25);
}
.lifepathcompat-page .pair-card.light .pair-card-emblem {
  background: radial-gradient(circle at 50% 50%, rgba(255, 217, 61, 0.18) 0%, transparent 65%);
  border-right: 1px solid rgba(255, 217, 61, 0.18);
}
.lifepathcompat-page .pair-card.shadow {
  background: linear-gradient(160deg, rgba(159, 18, 57, 0.18) 0%, rgba(20, 8, 16, 0.9) 60%);
  border: 1px solid rgba(225, 29, 72, 0.28);
}
.lifepathcompat-page .pair-card.shadow .pair-card-emblem {
  background: radial-gradient(circle at 50% 50%, rgba(225, 29, 72, 0.20) 0%, transparent 65%);
  border-right: 1px solid rgba(225, 29, 72, 0.22);
}

.lifepathcompat-page .pair-emblem-comp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(140px, 18vw, 240px);
  line-height: 0.85;
  letter-spacing: -0.04em;
}
.lifepathcompat-page .pair-emblem-comp .plus {
  font-size: 0.55em;
  font-weight: 400;
  font-family: var(--font-body);
  color: var(--text-4);
  margin-bottom: 0.1em;
}
.lifepathcompat-page .pair-card.light .pair-emblem-comp .one {
  color: var(--lp-gold);
  text-shadow:
    0 0 20px rgba(255, 217, 61, 0.7),
    0 0 60px rgba(255, 217, 61, 0.45),
    0 0 140px rgba(255, 217, 61, 0.25);
}
.lifepathcompat-page .pair-card.light .pair-emblem-comp .two {
  color: var(--lp-gold-soft);
  text-shadow:
    0 0 20px rgba(252, 211, 77, 0.65),
    0 0 60px rgba(252, 211, 77, 0.4),
    0 0 140px rgba(252, 211, 77, 0.22);
}
.lifepathcompat-page .pair-card.shadow .pair-emblem-comp .one {
  color: var(--lp-crimson);
  text-shadow:
    0 0 22px rgba(225, 29, 72, 0.85),
    0 0 64px rgba(225, 29, 72, 0.5),
    0 0 160px rgba(159, 18, 57, 0.4);
}
.lifepathcompat-page .pair-card.shadow .pair-emblem-comp .two {
  color: var(--lp-crimson-3);
  text-shadow:
    0 0 22px rgba(159, 18, 57, 0.75),
    0 0 64px rgba(159, 18, 57, 0.4);
}

.lifepathcompat-page .pair-card-body { padding: 48px; }
@media (max-width: 768px) {
  .lifepathcompat-page .pair-card-body { padding: 32px 24px; }
}
.lifepathcompat-page .pair-card-body .h-card-title {
  font-size: 24px;
  margin-bottom: 18px;
}
.lifepathcompat-page .pair-card.light .h-card-title { color: var(--lp-gold); }
.lifepathcompat-page .pair-card.shadow .h-card-title { color: var(--lp-crimson-bright); }

.lifepathcompat-page .pair-prose p {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--text-2);
  margin-bottom: 1.3em;
  text-wrap: pretty;
}
.lifepathcompat-page .pair-prose p:last-child { margin-bottom: 0; }
.lifepathcompat-page .pair-prose em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
}
.lifepathcompat-page .pair-card.light .pair-prose em { color: var(--lp-gold-soft); }
.lifepathcompat-page .pair-card.shadow .pair-prose em { color: var(--lp-crimson-bright); }

.lifepathcompat-page .pair-bullets {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
}
.lifepathcompat-page .pair-bullets li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-2);
}
.lifepathcompat-page .pair-bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 6px; height: 6px;
  margin-top: 8px;
  border-radius: 50%;
}
.lifepathcompat-page .pair-card.light .pair-bullets li::before {
  background: var(--lp-gold);
  box-shadow: 0 0 10px rgba(255, 217, 61, 0.5);
}
.lifepathcompat-page .pair-card.shadow .pair-bullets li::before {
  background: var(--lp-crimson);
  box-shadow: 0 0 10px rgba(225, 29, 72, 0.45);
}

/* ═══════════════════════════════════════════════════════
   HERO PAIR (PAIR page hero - dual numerals)
   No min-height: Xvh on hero (Googlebot WRS 411x731 rule)
═══════════════════════════════════════════════════════ */
.lifepathcompat-page .hero-pair {
  padding: 96px 0 64px;
  text-align: center;
  position: relative;
}
@media (max-width: 768px) {
  .lifepathcompat-page .hero-pair { padding: 64px 0 40px; }
}
.lifepathcompat-page .hero-pair-eyebrow {
  font-family: var(--font-head);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 28px;
  text-align: center;
}
.lifepathcompat-page .hero-pair-numerals {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 6vw, 80px);
  margin: 30px auto 56px;
  position: relative;
  isolation: isolate;
}
.lifepathcompat-page .hero-pair-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(180px, 24vw, 360px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  position: relative;
}
.lifepathcompat-page .hero-pair-num.a {
  color: var(--lp-signature);
  text-shadow:
    0 0 18px var(--lp-signature-glow),
    0 0 48px var(--lp-signature-glow),
    0 0 120px var(--lp-signature-glow-soft),
    0 0 200px var(--lp-signature-glow-soft);
}
.lifepathcompat-page .hero-pair-num.b {
  color: var(--lp-partner-base);
  text-shadow:
    0 0 18px rgba(96, 165, 250, 0.85),
    0 0 48px rgba(96, 165, 250, 0.55),
    0 0 120px rgba(96, 165, 250, 0.40),
    0 0 200px rgba(96, 165, 250, 0.25);
}
.lifepathcompat-page .hero-pair-x {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  color: var(--text-3);
  letter-spacing: -0.02em;
}
/* orbital rings behind each numeral */
.lifepathcompat-page .hero-pair-num::before {
  content: '';
  position: absolute;
  inset: -22% -28%;
  border-radius: 50%;
  border: 1px solid;
  pointer-events: none;
  animation: lpcompat-orbit 36s linear infinite;
  z-index: -1;
}
.lifepathcompat-page .hero-pair-num.a::before { border-color: color-mix(in srgb, var(--lp-signature) 22%, transparent); }
.lifepathcompat-page .hero-pair-num.b::before { border-color: rgba(96, 165, 250, 0.20); animation-direction: reverse; }
@keyframes lpcompat-orbit {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.lifepathcompat-page .hero-pair-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text-1);
  max-width: 22ch;
  margin: 0 auto 18px;
  text-wrap: balance;
}
.lifepathcompat-page .hero-pair-title .a { color: var(--lp-signature-bright); }
.lifepathcompat-page .hero-pair-title .b { color: var(--lp-partner); }
.lifepathcompat-page .hero-pair-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2.1vw, 26px);
  line-height: 1.4;
  color: var(--text-2);
  max-width: 52ch;
  margin: 0 auto 48px;
  text-wrap: balance;
}

/* mini 5-aspect rating bar in hero */
.lifepathcompat-page .hero-pair-ratings {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 8px;
}
@media (max-width: 768px) {
  .lifepathcompat-page .hero-pair-ratings { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .lifepathcompat-page .hero-pair-ratings { grid-template-columns: 1fr; }
}
.lifepathcompat-page .hero-pair-rating {
  padding: 16px 16px 14px;
  background: rgba(15, 13, 46, 0.65);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}
.lifepathcompat-page .hero-pair-rating-k {
  font-family: var(--font-head);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: 8px;
}
.lifepathcompat-page .hero-pair-rating .stars {
  justify-content: flex-start;
  gap: 2px;
}
.lifepathcompat-page .hero-pair-rating .star { width: 13px; height: 13px; }
.lifepathcompat-page .hero-pair-rating.kind-best  .star.on path { fill: #A7F3D0; }
.lifepathcompat-page .hero-pair-rating.kind-best  { border-color: rgba(167, 243, 208, 0.30); }
.lifepathcompat-page .hero-pair-rating.kind-good  .star.on path { fill: var(--lp-gold); }
.lifepathcompat-page .hero-pair-rating.kind-good  { border-color: rgba(255, 217, 61, 0.22); }
.lifepathcompat-page .hero-pair-rating.kind-mid   .star.on path { fill: #C4B5FD; }
.lifepathcompat-page .hero-pair-rating.kind-mid   { border-color: rgba(196, 181, 253, 0.24); }
.lifepathcompat-page .hero-pair-rating.kind-low   .star.on path { fill: var(--lp-crimson-bright); }
.lifepathcompat-page .hero-pair-rating.kind-low   { border-color: rgba(225, 29, 72, 0.24); }

/* ═══════════════════════════════════════════════════════
   QUICK ANSWER (PAIR - single horizontal card)
═══════════════════════════════════════════════════════ */
.lifepathcompat-page .qa-spoke {
  background:
    radial-gradient(ellipse 700px 240px at 50% 0%, rgba(96, 165, 250, 0.10) 0%, transparent 65%),
    var(--bg-card-3);
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 22px;
  padding: 40px 44px;
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .lifepathcompat-page .qa-spoke { padding: 28px 22px; }
}
.lifepathcompat-page .qa-spoke p {
  font-size: clamp(17px, 1.7vw, 19px);
  line-height: 1.75;
  color: var(--text-2);
  text-wrap: pretty;
  margin: 0;
}
.lifepathcompat-page .qa-spoke p strong {
  color: var(--lp-signature-bright);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════
   ASPECTS TABLE (PAIR - 9 rows of dimensions)
═══════════════════════════════════════════════════════ */
.lifepathcompat-page .aspects-table-wrap {
  background: var(--bg-card-3);
  border: 1px solid var(--border-card);
  border-radius: 22px;
  overflow: hidden;
}
.lifepathcompat-page .aspects-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
}
.lifepathcompat-page .aspects-table thead th {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-4);
  text-align: left;
  padding: 18px 24px;
  background: rgba(7, 6, 26, 0.5);
  border-bottom: 1px solid var(--border-soft);
}
.lifepathcompat-page .aspects-table thead th:nth-child(2) { text-align: center; }
.lifepathcompat-page .aspects-table thead th:last-child  { text-align: left; }
.lifepathcompat-page .aspects-table tbody tr {
  border-bottom: 1px solid var(--border-soft);
  transition: background 160ms;
}
.lifepathcompat-page .aspects-table tbody tr:last-child { border-bottom: none; }
.lifepathcompat-page .aspects-table tbody tr:hover { background: rgba(96, 165, 250, 0.04); }
.lifepathcompat-page .aspects-table td {
  padding: 18px 24px;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.5;
}
.lifepathcompat-page .aspects-table .aspect-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-1);
  letter-spacing: -0.005em;
}
.lifepathcompat-page .aspects-table .aspect-stars { text-align: center; }
.lifepathcompat-page .aspects-table .aspect-note  { color: var(--text-3); font-size: 14.5px; font-style: italic; }

/* tone tint for stars */
.lifepathcompat-page .aspect-stars.tone-best .star.on path { fill: #A7F3D0; }
.lifepathcompat-page .aspect-stars.tone-good .star.on path { fill: var(--lp-gold); }
.lifepathcompat-page .aspect-stars.tone-mid  .star.on path { fill: #C4B5FD; }
.lifepathcompat-page .aspect-stars.tone-low  .star.on path { fill: var(--lp-crimson-bright); }

/* Mobile - stack as cards */
.lifepathcompat-page .aspects-table-mobile {
  display: none;
  flex-direction: column;
  gap: 12px;
}
.lifepathcompat-page .aspects-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  padding: 16px 18px;
}
.lifepathcompat-page .aspects-card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 6px;
}
.lifepathcompat-page .aspects-card-head .aspect-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-1);
}
.lifepathcompat-page .aspects-card-note {
  font-size: 13px;
  color: var(--text-3);
  font-style: italic;
  margin-top: 6px;
}
@media (max-width: 768px) {
  .lifepathcompat-page .aspects-table-wrap { display: none; }
  .lifepathcompat-page .aspects-table-mobile { display: flex; }
}

/* ═══════════════════════════════════════════════════════
   COMMUNICATION TABLES (PAIR - two parallel grids)
═══════════════════════════════════════════════════════ */
.lifepathcompat-page .comm-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
@media (max-width: 900px) {
  .lifepathcompat-page .comm-tables { grid-template-columns: 1fr; gap: 18px; }
}
.lifepathcompat-page .comm-table {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  overflow: hidden;
}
.lifepathcompat-page .comm-table-head {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border-soft);
  background: rgba(7, 6, 26, 0.4);
  display: flex; align-items: center; gap: 12px;
}
.lifepathcompat-page .comm-table-head .arrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
}
.lifepathcompat-page .comm-table.dir-atob {
  border-color: color-mix(in srgb, var(--lp-signature) 32%, transparent);
}
.lifepathcompat-page .comm-table.dir-atob .arrow .from { color: var(--lp-signature-bright); }
.lifepathcompat-page .comm-table.dir-atob .arrow .sep  { color: var(--text-4); }
.lifepathcompat-page .comm-table.dir-atob .arrow .to   { color: var(--lp-partner); }
.lifepathcompat-page .comm-table.dir-btoa {
  border-color: rgba(96, 165, 250, 0.28);
}
.lifepathcompat-page .comm-table.dir-btoa .arrow .from { color: var(--lp-partner); }
.lifepathcompat-page .comm-table.dir-btoa .arrow .sep  { color: var(--text-4); }
.lifepathcompat-page .comm-table.dir-btoa .arrow .to   { color: var(--lp-signature-bright); }
.lifepathcompat-page .comm-table-head-text {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-4);
  line-height: 1.45;
}
.lifepathcompat-page .comm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border-soft);
  align-items: start;
}
.lifepathcompat-page .comm-row:last-child { border-bottom: none; }
.lifepathcompat-page .comm-row-a {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.45;
  color: var(--text-1);
  font-weight: 500;
}
.lifepathcompat-page .comm-row-b {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-3);
  padding-left: 14px;
  border-left: 2px solid;
}
.lifepathcompat-page .comm-table.dir-atob .comm-row-b { border-left-color: rgba(96, 165, 250, 0.4); }
.lifepathcompat-page .comm-table.dir-btoa .comm-row-b {
  border-left-color: color-mix(in srgb, var(--lp-signature) 45%, transparent);
}
@media (max-width: 560px) {
  .lifepathcompat-page .comm-row { grid-template-columns: 1fr; }
  .lifepathcompat-page .comm-row-b {
    padding-left: 0;
    border-left: none;
    padding-top: 8px;
    border-top: 1px dashed var(--border-soft);
  }
}

/* ═══════════════════════════════════════════════════════
   INTIMACY PROSE (PAIR - two-toned card)
═══════════════════════════════════════════════════════ */
.lifepathcompat-page .intimacy-prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 44px 48px;
  background:
    radial-gradient(ellipse 600px 300px at 0% 0%, color-mix(in srgb, var(--lp-signature) 9%, transparent) 0%, transparent 60%),
    radial-gradient(ellipse 600px 300px at 100% 100%, rgba(96, 165, 250, 0.08) 0%, transparent 60%),
    var(--bg-card-3);
  border: 1px solid var(--border-card);
  border-radius: 24px;
  position: relative;
}
@media (max-width: 768px) {
  .lifepathcompat-page .intimacy-prose { padding: 30px 24px; }
}
.lifepathcompat-page .intimacy-prose p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-2);
  margin-bottom: 1.3em;
  text-wrap: pretty;
}
.lifepathcompat-page .intimacy-prose p:last-child { margin-bottom: 0; }
.lifepathcompat-page .intimacy-prose em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--lp-signature-bright);
}

/* ═══════════════════════════════════════════════════════
   YEAR STAGE TIMELINE (PAIR - 5y / 15y / 30y)
═══════════════════════════════════════════════════════ */
.lifepathcompat-page .years-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
@media (max-width: 900px) {
  .lifepathcompat-page .years-timeline { grid-template-columns: 1fr; gap: 18px; }
}
.lifepathcompat-page .year-stage {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 22px;
  padding: 36px 32px 32px;
  position: relative;
  overflow: hidden;
}
.lifepathcompat-page .year-stage::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--lp-signature-bright), var(--lp-partner));
  opacity: 0.7;
}
.lifepathcompat-page .year-stage-badge {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.lifepathcompat-page .year-stage-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.02em;
  line-height: 1;
  background:
    radial-gradient(circle at 30% 30%, color-mix(in srgb, var(--lp-signature) 22%, transparent) 0%, rgba(96, 165, 250, 0.10) 70%, transparent 100%);
  color: var(--text-1);
  border: 1px solid rgba(167, 139, 250, 0.35);
  text-shadow:
    0 0 10px var(--lp-signature-glow-soft),
    0 0 18px rgba(96, 165, 250, 0.3);
  flex-shrink: 0;
}
.lifepathcompat-page .year-stage-meta {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-4);
}
.lifepathcompat-page .year-stage-meta .yr {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--lp-partner);
  text-transform: none;
  display: block;
  line-height: 1;
  margin-top: 2px;
}
.lifepathcompat-page .year-stage-label {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  color: var(--lp-gold);
  margin-bottom: 14px;
  text-wrap: balance;
}
.lifepathcompat-page .year-stage-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-2);
  text-wrap: pretty;
}

/* ═══════════════════════════════════════════════════════
   WORKS / BREAKS GRID (PAIR - two diagnostic columns)
═══════════════════════════════════════════════════════ */
.lifepathcompat-page .wb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) {
  .lifepathcompat-page .wb-grid { grid-template-columns: 1fr; gap: 18px; }
}
.lifepathcompat-page .wb-col {
  background: var(--bg-card-3);
  border: 1px solid;
  border-radius: 24px;
  padding: 36px 34px;
}
.lifepathcompat-page .wb-col.works {
  border-color: rgba(94, 234, 212, 0.30);
  background:
    radial-gradient(ellipse 500px 300px at 0% 0%, rgba(94, 234, 212, 0.10) 0%, transparent 60%),
    var(--bg-card-3);
}
.lifepathcompat-page .wb-col.breaks {
  border-color: rgba(225, 29, 72, 0.30);
  background:
    radial-gradient(ellipse 500px 300px at 0% 0%, rgba(225, 29, 72, 0.10) 0%, transparent 60%),
    var(--bg-card-3);
}
.lifepathcompat-page .wb-col-head {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 22px; margin-bottom: 24px;
  border-bottom: 1px solid var(--border-soft);
}
.lifepathcompat-page .wb-col-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
}
.lifepathcompat-page .wb-col.works .wb-col-icon {
  background: rgba(94, 234, 212, 0.12);
  color: #5EEAD4;
  border: 1px solid rgba(94, 234, 212, 0.35);
}
.lifepathcompat-page .wb-col.breaks .wb-col-icon {
  background: rgba(225, 29, 72, 0.12);
  color: var(--lp-crimson-bright);
  border: 1px solid rgba(225, 29, 72, 0.35);
}
.lifepathcompat-page .wb-col-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.lifepathcompat-page .wb-col.works  .wb-col-title { color: #5EEAD4; }
.lifepathcompat-page .wb-col.breaks .wb-col-title { color: var(--lp-crimson-bright); }
.lifepathcompat-page .wb-items {
  display: flex; flex-direction: column;
  gap: 18px;
}
.lifepathcompat-page .wb-item {
  padding-left: 18px;
  position: relative;
}
.lifepathcompat-page .wb-item::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
}
.lifepathcompat-page .wb-col.works  .wb-item::before { background: #5EEAD4; box-shadow: 0 0 10px rgba(94,234,212,0.5); }
.lifepathcompat-page .wb-col.breaks .wb-item::before {
  background: var(--lp-crimson);
  box-shadow: 0 0 10px rgba(225, 29, 72, 0.45);
}
.lifepathcompat-page .wb-item-h {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  color: var(--text-1);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.lifepathcompat-page .wb-item-p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-3);
}

/* ═══════════════════════════════════════════════════════
   CONFLICT CARDS (PAIR - pattern grid with accents)
═══════════════════════════════════════════════════════ */
.lifepathcompat-page .conflict-intro {
  max-width: 760px;
  margin: 0 auto 36px;
}
.lifepathcompat-page .conflict-intro p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 1.1em;
  text-wrap: pretty;
}
.lifepathcompat-page .conflict-intro p:last-child { margin-bottom: 0; }
.lifepathcompat-page .conflict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .lifepathcompat-page .conflict-grid { grid-template-columns: 1fr; gap: 16px; }
}
.lifepathcompat-page .conflict-card {
  background: var(--bg-card-3);
  border: 1px solid;
  border-left-width: 3px;
  border-radius: 18px;
  padding: 28px 30px;
  position: relative;
  overflow: hidden;
  transition: all 240ms;
}
.lifepathcompat-page .conflict-card:hover { transform: translateY(-2px); }
.lifepathcompat-page .conflict-card.accent-self {
  border-color: color-mix(in srgb, var(--lp-signature) 32%, transparent);
  border-left-color: var(--lp-signature);
  background:
    radial-gradient(ellipse 400px 220px at 100% 0%, color-mix(in srgb, var(--lp-signature) 10%, transparent) 0%, transparent 65%),
    var(--bg-card-3);
}
.lifepathcompat-page .conflict-card.accent-partner {
  border-color: rgba(96, 165, 250, 0.30);
  border-left-color: var(--lp-partner-base);
  background:
    radial-gradient(ellipse 400px 220px at 100% 0%, rgba(96, 165, 250, 0.08) 0%, transparent 65%),
    var(--bg-card-3);
}
.lifepathcompat-page .conflict-card.accent-both {
  border-color: rgba(167, 139, 250, 0.30);
  border-left-color: var(--lp-both-base);
  background:
    radial-gradient(ellipse 400px 220px at 100% 0%, rgba(167, 139, 250, 0.08) 0%, transparent 65%),
    var(--bg-card-3);
}
.lifepathcompat-page .conflict-card-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 16px;
}
.lifepathcompat-page .conflict-card-tag::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
}
.lifepathcompat-page .conflict-card.accent-self .conflict-card-tag {
  color: var(--lp-signature-bright);
  background: color-mix(in srgb, var(--lp-signature) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--lp-signature) 35%, transparent);
}
.lifepathcompat-page .conflict-card.accent-self .conflict-card-tag::before {
  background: var(--lp-signature);
  box-shadow: 0 0 8px var(--lp-signature-glow);
}
.lifepathcompat-page .conflict-card.accent-partner .conflict-card-tag {
  color: var(--lp-partner);
  background: rgba(96, 165, 250, 0.10);
  border: 1px solid rgba(96, 165, 250, 0.34);
}
.lifepathcompat-page .conflict-card.accent-partner .conflict-card-tag::before {
  background: var(--lp-partner-base);
  box-shadow: 0 0 8px var(--lp-partner-glow);
}
.lifepathcompat-page .conflict-card.accent-both .conflict-card-tag {
  color: var(--lp-both);
  background: rgba(167, 139, 250, 0.10);
  border: 1px solid rgba(167, 139, 250, 0.32);
}
.lifepathcompat-page .conflict-card.accent-both .conflict-card-tag::before {
  background: var(--lp-both-base);
  box-shadow: 0 0 8px var(--lp-both-glow);
}
.lifepathcompat-page .conflict-card-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.2;
  color: var(--text-1);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  text-wrap: balance;
}
.lifepathcompat-page .conflict-card-body {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-2);
  text-wrap: pretty;
}

/* ═══════════════════════════════════════════════════════
   STORY CARDS (PAIR - real-stories testimonial grid)
═══════════════════════════════════════════════════════ */
.lifepathcompat-page .stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .lifepathcompat-page .stories-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .lifepathcompat-page .stories-grid { grid-template-columns: 1fr; }
}
.lifepathcompat-page .story-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 18px;
  padding: 30px 28px 26px;
  position: relative;
  overflow: hidden;
  transition: all 240ms;
}
.lifepathcompat-page .story-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.3);
}
.lifepathcompat-page .story-card.tone-light  { border-color: rgba(94, 234, 212, 0.25); }
.lifepathcompat-page .story-card.tone-shadow { border-color: rgba(225, 29, 72, 0.25); }
.lifepathcompat-page .story-card.tone-mixed  { border-color: rgba(167, 139, 250, 0.28); }
.lifepathcompat-page .story-card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.lifepathcompat-page .story-card-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-1);
}
.lifepathcompat-page .story-card-duration {
  font-family: var(--font-head);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-4);
  text-align: right;
}
.lifepathcompat-page .story-card-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 11px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.lifepathcompat-page .story-card.tone-light .story-card-tag {
  color: #5EEAD4;
  background: rgba(94, 234, 212, 0.10);
  border: 1px solid rgba(94, 234, 212, 0.32);
}
.lifepathcompat-page .story-card.tone-shadow .story-card-tag {
  color: var(--lp-crimson-bright);
  background: rgba(225, 29, 72, 0.10);
  border: 1px solid rgba(225, 29, 72, 0.32);
}
.lifepathcompat-page .story-card.tone-mixed .story-card-tag {
  color: var(--lp-both);
  background: rgba(167, 139, 250, 0.10);
  border: 1px solid rgba(167, 139, 250, 0.32);
}
.lifepathcompat-page .story-card-story {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-2);
  text-wrap: pretty;
  position: relative;
  padding-left: 18px;
}
.lifepathcompat-page .story-card-story::before {
  content: '"';
  position: absolute;
  top: -10px; left: -2px;
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
  opacity: 0.55;
}
.lifepathcompat-page .story-card.tone-light  .story-card-story::before { color: #5EEAD4; }
.lifepathcompat-page .story-card.tone-shadow .story-card-story::before { color: var(--lp-crimson-bright); }
.lifepathcompat-page .story-card.tone-mixed  .story-card-story::before { color: var(--lp-both); }
.lifepathcompat-page .stories-disclaimer {
  margin-top: 32px;
  font-size: 12.5px;
  color: var(--text-4);
  text-align: center;
  font-style: italic;
  font-family: var(--font-display);
}

/* ═══════════════════════════════════════════════════════
   RELATED PAIRINGS (PAIR - 4xN small cards)
═══════════════════════════════════════════════════════ */
.lifepathcompat-page .related-sub {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-4);
  margin: 0 0 18px;
  display: block;
}
.lifepathcompat-page .related-sub .with {
  color: var(--text-2);
  text-transform: none;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 17px;
  margin-left: 10px;
}
.lifepathcompat-page .pair-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 1100px) {
  .lifepathcompat-page .pair-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .lifepathcompat-page .pair-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .lifepathcompat-page .pair-grid { grid-template-columns: 1fr; }
}
.lifepathcompat-page .pair-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  text-decoration: none;
  transition: all 240ms;
  position: relative;
  overflow: hidden;
}
.lifepathcompat-page .pair-mini:hover {
  transform: translateY(-2px);
  border-color: rgba(96, 165, 250, 0.4);
  box-shadow: 0 20px 50px -20px rgba(96, 165, 250, 0.25);
}
.lifepathcompat-page .pair-mini.side-self:hover {
  border-color: color-mix(in srgb, var(--lp-signature) 42%, transparent);
  box-shadow: 0 20px 50px -20px color-mix(in srgb, var(--lp-signature) 28%, transparent);
}
.lifepathcompat-page .pair-mini-eq {
  display: flex; align-items: baseline; gap: 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  min-width: 54px;
}
.lifepathcompat-page .pair-mini-eq .plus { color: var(--text-4); font-size: 0.65em; font-weight: 400; }
.lifepathcompat-page .pair-mini.side-self .pair-mini-eq .a {
  color: var(--lp-signature-bright);
  text-shadow: 0 0 10px var(--lp-signature-glow-soft);
}
.lifepathcompat-page .pair-mini.side-self .pair-mini-eq .b { color: var(--text-1); }
.lifepathcompat-page .pair-mini.side-partner .pair-mini-eq .a {
  color: var(--lp-partner);
  text-shadow: 0 0 10px var(--lp-partner-glow-soft);
}
.lifepathcompat-page .pair-mini.side-partner .pair-mini-eq .b { color: var(--text-1); }
.lifepathcompat-page .pair-mini-info { flex: 1; min-width: 0; }
.lifepathcompat-page .pair-mini-tag {
  font-family: var(--font-head);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  line-height: 1.35;
}
.lifepathcompat-page .pair-mini-line { display: none; }
.lifepathcompat-page .pair-mini-arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-4);
  transition: all 200ms;
  flex-shrink: 0;
}
.lifepathcompat-page .pair-mini:hover .pair-mini-arrow {
  transform: translateX(3px);
  color: var(--lp-partner);
}
.lifepathcompat-page .pair-mini.side-self:hover .pair-mini-arrow { color: var(--lp-signature-bright); }
.lifepathcompat-page .pair-mini.current {
  background: linear-gradient(180deg, rgba(96, 165, 250, 0.15) 0%, var(--bg-card) 70%);
  border-color: rgba(96, 165, 250, 0.50);
  pointer-events: none;
}
.lifepathcompat-page .pair-mini.current.side-self {
  background: linear-gradient(180deg, color-mix(in srgb, var(--lp-signature) 18%, transparent) 0%, var(--bg-card) 70%);
  border-color: color-mix(in srgb, var(--lp-signature) 55%, transparent);
}
.lifepathcompat-page .pair-mini-tag.t-best { color: #A7F3D0; }
.lifepathcompat-page .pair-mini-tag.t-good { color: #5EEAD4; }
.lifepathcompat-page .pair-mini-tag.t-warm { color: var(--lp-gold); }
.lifepathcompat-page .pair-mini-tag.t-mid  { color: var(--lp-both); }
.lifepathcompat-page .pair-mini-tag.t-low  { color: var(--lp-crimson-bright); }

/* ═══════════════════════════════════════════════════════
   HUB-CARD-BIG (PAIR - side-by-side hub callouts)
═══════════════════════════════════════════════════════ */
.lifepathcompat-page .hub-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .lifepathcompat-page .hub-pair { grid-template-columns: 1fr; }
}
.lifepathcompat-page .hub-card-big {
  display: flex;
  flex-direction: column;
  padding: 36px 34px;
  border-radius: 22px;
  text-decoration: none;
  background: var(--bg-card-3);
  border: 1px solid;
  position: relative;
  overflow: hidden;
  transition: all 240ms;
}
.lifepathcompat-page .hub-card-big.side-self {
  border-color: color-mix(in srgb, var(--lp-signature) 35%, transparent);
  background:
    radial-gradient(ellipse 500px 320px at 100% 0%, color-mix(in srgb, var(--lp-signature) 16%, transparent) 0%, transparent 60%),
    var(--bg-card-3);
}
.lifepathcompat-page .hub-card-big.side-partner {
  border-color: rgba(96, 165, 250, 0.34);
  background:
    radial-gradient(ellipse 500px 320px at 100% 0%, rgba(96, 165, 250, 0.14) 0%, transparent 60%),
    var(--bg-card-3);
}
.lifepathcompat-page .hub-card-big:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 70px -24px rgba(0,0,0,0.4);
}
.lifepathcompat-page .hub-card-big-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 140px;
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.lifepathcompat-page .hub-card-big.side-self .hub-card-big-num {
  color: var(--lp-signature);
  text-shadow: 0 0 22px var(--lp-signature-glow), 0 0 60px var(--lp-signature-glow-soft);
}
.lifepathcompat-page .hub-card-big.side-partner .hub-card-big-num {
  color: var(--lp-partner-base);
  text-shadow: 0 0 22px rgba(96, 165, 250, 0.6), 0 0 60px rgba(96, 165, 250, 0.35);
}
.lifepathcompat-page .hub-card-big-eyebrow {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: 8px;
}
.lifepathcompat-page .hub-card-big-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: var(--text-1);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  max-width: 22ch;
  text-wrap: balance;
}
.lifepathcompat-page .hub-card-big-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 22px;
}
.lifepathcompat-page .hub-card-big.side-self    .hub-card-big-sub { color: var(--lp-signature-bright); }
.lifepathcompat-page .hub-card-big.side-partner .hub-card-big-sub { color: var(--lp-partner); }
.lifepathcompat-page .hub-card-big-cta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.lifepathcompat-page .hub-card-big.side-self    .hub-card-big-cta { color: var(--lp-signature-bright); }
.lifepathcompat-page .hub-card-big.side-partner .hub-card-big-cta { color: var(--lp-partner); }
.lifepathcompat-page .hub-card-big:hover .hub-card-big-cta svg { transform: translateX(4px); }
.lifepathcompat-page .hub-card-big-cta svg { transition: transform 200ms; }

/* ═══════════════════════════════════════════════════════
   LEARN-MORE CARDS (PAIR - twin callouts to LP pages)
═══════════════════════════════════════════════════════ */
.lifepathcompat-page .learn-more-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 768px) {
  .lifepathcompat-page .learn-more-grid { grid-template-columns: 1fr; }
}
.lifepathcompat-page .learn-card {
  background: var(--bg-card-3);
  border: 1px solid;
  border-radius: 24px;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.lifepathcompat-page .learn-card.side-self {
  border-color: color-mix(in srgb, var(--lp-signature) 32%, transparent);
  background:
    radial-gradient(ellipse 600px 350px at 90% 0%, color-mix(in srgb, var(--lp-signature) 18%, transparent) 0%, transparent 60%),
    var(--bg-card-3);
}
.lifepathcompat-page .learn-card.side-partner {
  border-color: rgba(96, 165, 250, 0.30);
  background:
    radial-gradient(ellipse 600px 350px at 90% 0%, rgba(96, 165, 250, 0.16) 0%, transparent 60%),
    var(--bg-card-3);
}
.lifepathcompat-page .learn-card-glow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 200px;
  line-height: 0.85;
  letter-spacing: -0.04em;
  position: absolute;
  top: -10px; right: 18px;
  opacity: 0.95;
  pointer-events: none;
  z-index: 0;
}
.lifepathcompat-page .learn-card.side-self .learn-card-glow {
  color: var(--lp-signature);
  text-shadow:
    0 0 18px var(--lp-signature-glow),
    0 0 60px var(--lp-signature-glow-soft),
    0 0 140px var(--lp-signature-glow-soft);
}
.lifepathcompat-page .learn-card.side-partner .learn-card-glow {
  color: var(--lp-partner-base);
  text-shadow:
    0 0 18px rgba(96, 165, 250, 0.5),
    0 0 60px rgba(96, 165, 250, 0.35),
    0 0 140px rgba(96, 165, 250, 0.2);
}
.lifepathcompat-page .learn-card-eyebrow {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: 110px;
  position: relative;
  z-index: 1;
}
.lifepathcompat-page .learn-card-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.15;
  color: var(--text-1);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.lifepathcompat-page .learn-card-sub {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-2);
  margin-bottom: 26px;
  text-wrap: pretty;
  position: relative;
  z-index: 1;
}
.lifepathcompat-page .learn-card-btn {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 220ms;
  position: relative;
  z-index: 1;
}
.lifepathcompat-page .learn-card.side-self .learn-card-btn {
  color: #FFF;
  background: linear-gradient(135deg, var(--lp-signature-bright), var(--lp-signature));
  box-shadow: 0 0 26px var(--lp-signature-glow);
}
.lifepathcompat-page .learn-card.side-self .learn-card-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 40px var(--lp-signature-glow);
}
.lifepathcompat-page .learn-card.side-partner .learn-card-btn {
  color: var(--bg-0);
  background: linear-gradient(135deg, var(--lp-partner), var(--lp-partner-base));
  box-shadow: 0 0 26px rgba(96, 165, 250, 0.35);
}
.lifepathcompat-page .learn-card.side-partner .learn-card-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 40px rgba(96, 165, 250, 0.55);
}
.lifepathcompat-page .learn-card-btn svg { transition: transform 200ms; }
.lifepathcompat-page .learn-card-btn:hover svg { transform: translateX(3px); }

/* ═══════════════════════════════════════════════════════
   CROSS-LINK CARD (HUB Block 12 - violet/purple)
═══════════════════════════════════════════════════════ */
.lifepathcompat-page .lp-crosslink {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 40px 44px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 600px 300px at 10% 50%, rgba(183, 148, 244, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 500px 300px at 90% 50%, rgba(107, 70, 193, 0.18) 0%, transparent 60%),
    var(--bg-card-3);
  border: 1px solid rgba(183, 148, 244, 0.3);
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .lifepathcompat-page .lp-crosslink {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 32px 24px;
    text-align: center;
  }
}
.lifepathcompat-page .lp-crosslink-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 110px;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--lp-violet);
  text-shadow:
    0 0 18px rgba(183, 148, 244, 0.55),
    0 0 48px rgba(183, 148, 244, 0.35);
}
.lifepathcompat-page .lp-crosslink-body { max-width: 60ch; }
@media (max-width: 768px) {
  .lifepathcompat-page .lp-crosslink-body { margin: 0 auto; }
}
.lifepathcompat-page .lp-crosslink-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--lp-violet);
  margin-bottom: 10px;
}
.lifepathcompat-page .lp-crosslink h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--text-1);
  line-height: 1.2;
  margin-bottom: 10px;
  text-wrap: balance;
}
.lifepathcompat-page .lp-crosslink p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-2);
}
.lifepathcompat-page .lp-crosslink-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #FFF;
  background: linear-gradient(135deg, var(--lp-violet-2), var(--lp-violet-deep));
  box-shadow: 0 0 28px rgba(183, 148, 244, 0.35);
  transition: all 200ms;
  white-space: nowrap;
  flex-shrink: 0;
}
.lifepathcompat-page .lp-crosslink-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 40px rgba(183, 148, 244, 0.55);
}
.lifepathcompat-page .lp-crosslink-btn svg { transition: transform 200ms; }
.lifepathcompat-page .lp-crosslink-btn:hover svg { transform: translateX(3px); }

/* ═══════════════════════════════════════════════════════
   HUB GRID (HUB - 3x3 grid of Life Path compatibility hubs)
═══════════════════════════════════════════════════════ */
.lifepathcompat-page .hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 768px) {
  .lifepathcompat-page .hub-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .lifepathcompat-page .hub-grid { grid-template-columns: 1fr; }
}
.lifepathcompat-page .hub-card {
  display: flex;
  flex-direction: column;
  padding: 28px 26px 26px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 18px;
  text-decoration: none;
  transition: all 240ms;
  position: relative;
  overflow: hidden;
}
.lifepathcompat-page .hub-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--lp-signature) 45%, transparent);
  box-shadow: 0 24px 60px -24px color-mix(in srgb, var(--lp-signature) 28%, transparent);
}
.lifepathcompat-page .hub-card.current {
  pointer-events: none;
  background: linear-gradient(180deg, color-mix(in srgb, var(--lp-signature) 20%, transparent) 0%, var(--bg-card) 70%);
  border-color: color-mix(in srgb, var(--lp-signature) 60%, transparent);
  box-shadow: 0 0 40px color-mix(in srgb, var(--lp-signature) 28%, transparent);
}
.lifepathcompat-page .hub-card-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 96px;
  line-height: 0.85;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.lifepathcompat-page .hub-card-epithet {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-1);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.lifepathcompat-page .hub-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: 18px;
}
.lifepathcompat-page .hub-card-arrow {
  margin-top: auto;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--lp-signature) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--lp-signature) 32%, transparent);
  color: var(--lp-signature-bright);
  transition: all 200ms;
}
.lifepathcompat-page .hub-card:hover .hub-card-arrow {
  background: var(--lp-signature);
  color: #FFF;
  transform: translateX(2px);
}
.lifepathcompat-page .hub-card.current::after {
  content: 'You are here';
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--lp-signature-bright);
  padding: 5px 10px;
  background: color-mix(in srgb, var(--lp-signature) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--lp-signature) 42%, transparent);
  border-radius: 999px;
}

/* ═══════════════════════════════════════════════════════
   SOFT INLINE CTA (PAIR - violet hint at section endings)
═══════════════════════════════════════════════════════ */
.lifepathcompat-page .soft-inline-cta {
  margin: 40px auto 0;
  max-width: 720px;
  padding: 18px 24px;
  border-radius: 14px;
  background: rgba(15, 13, 46, 0.55);
  border: 1px dashed rgba(167, 139, 250, 0.35);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-2);
}
.lifepathcompat-page .soft-inline-cta-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(167, 139, 250, 0.14);
  color: var(--lp-both);
  border: 1px solid rgba(167, 139, 250, 0.35);
  flex-shrink: 0;
}
.lifepathcompat-page .soft-inline-cta-text {
  flex: 1;
  min-width: 200px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.4;
  color: var(--text-1);
}
.lifepathcompat-page .soft-inline-cta a {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lp-both);
  text-decoration: none;
  transition: all 200ms;
  white-space: nowrap;
}
.lifepathcompat-page .soft-inline-cta a:hover { color: #FFF; }

/* Shadow band uses a stronger CTA */
.lifepathcompat-page .shadow-soft-cta {
  margin-top: 32px;
  padding: 22px 26px;
  border-radius: 16px;
  background: rgba(225, 29, 72, 0.08);
  border: 1px solid rgba(225, 29, 72, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.lifepathcompat-page .shadow-soft-cta-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: var(--text-1);
}
.lifepathcompat-page .shadow-soft-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--lp-crimson-bright) 0%, var(--lp-crimson) 100%);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 200ms, box-shadow 200ms;
  box-shadow: 0 0 24px rgba(225, 29, 72, 0.35);
  flex-shrink: 0;
}
.lifepathcompat-page .shadow-soft-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(225, 29, 72, 0.55);
}

/* ═══════════════════════════════════════════════════════
   FINAL CTA (used on both HUB + PAIR, dual-tinted)
═══════════════════════════════════════════════════════ */
.lifepathcompat-page .final-cta {
  background:
    radial-gradient(ellipse 1000px 500px at 18% 18%, color-mix(in srgb, var(--lp-signature) 22%, transparent) 0%, transparent 55%),
    radial-gradient(ellipse 900px 500px at 82% 82%, rgba(96, 165, 250, 0.22) 0%, transparent 55%),
    linear-gradient(180deg, #100B26 0%, #0A081E 100%);
  border-color: rgba(167, 139, 250, 0.30);
}
.lifepathcompat-page .final-cta h2 em {
  background: linear-gradient(180deg, var(--lp-signature-bright) 0%, var(--lp-both-base) 50%, var(--lp-partner) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lifepathcompat-page .final-cta-chip {
  background: rgba(167, 139, 250, 0.06);
  border-color: rgba(167, 139, 250, 0.24);
}
.lifepathcompat-page .final-cta-chip-icon {
  background: rgba(167, 139, 250, 0.14);
  color: var(--lp-both);
}
.lifepathcompat-page .final-cta-chip strong { color: var(--lp-both) !important; }
.lifepathcompat-page .final-cta-section .btn-primary {
  background: linear-gradient(135deg, var(--lp-signature-bright), var(--lp-partner-base));
  box-shadow: 0 0 32px rgba(167, 139, 250, 0.35);
  color: var(--bg-0);
}
.lifepathcompat-page .final-cta-section .btn-primary:hover {
  box-shadow: 0 0 48px rgba(167, 139, 250, 0.55);
}

/* App mock inside the final CTA (HUB) */
.lifepathcompat-page .app-mock {
  position: relative;
  padding: 22px;
  background: rgba(15, 13, 46, 0.85);
  border: 1px solid color-mix(in srgb, var(--lp-signature) 28%, transparent);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  overflow: hidden;
}
.lifepathcompat-page .app-mock-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-soft);
}
.lifepathcompat-page .app-mock-head-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-1);
}
.lifepathcompat-page .app-mock-head-dot { display: flex; gap: 5px; }
.lifepathcompat-page .app-mock-head-dot span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.lifepathcompat-page .app-mock-pair {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  padding: 18px 0;
  margin-bottom: 14px;
}
.lifepathcompat-page .app-mock-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 64px;
  line-height: 0.85;
  letter-spacing: -0.04em;
}
.lifepathcompat-page .app-mock-num.you {
  color: var(--lp-signature-bright);
  text-shadow: 0 0 18px var(--lp-signature-glow);
}
.lifepathcompat-page .app-mock-num.them {
  color: #67E8F9;
  text-shadow: 0 0 18px rgba(34, 211, 238, 0.45);
}
.lifepathcompat-page .app-mock-x {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  color: var(--text-3);
}
.lifepathcompat-page .app-mock-rows { display: flex; flex-direction: column; gap: 10px; }
.lifepathcompat-page .app-mock-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(7, 6, 26, 0.6);
  border: 1px solid var(--border-soft);
}
.lifepathcompat-page .app-mock-row-k {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--text-4);
}
.lifepathcompat-page .app-mock-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
}
.lifepathcompat-page .app-mock-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lp-signature-bright), var(--lp-gold));
  box-shadow: 0 0 14px var(--lp-signature-glow);
}
.lifepathcompat-page .app-mock-row-v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--lp-gold);
}
@media (max-width: 500px) {
  .lifepathcompat-page .app-mock-row { grid-template-columns: 80px 1fr auto; }
}

/* ═══════════════════════════════════════════════════════
   FAQ - dual-themed PAIR variant
═══════════════════════════════════════════════════════ */
.lifepathcompat-page .faq-item.open { border-color: rgba(167, 139, 250, 0.45); }
.lifepathcompat-page .faq-q-num     { color: var(--lp-both); }
.lifepathcompat-page .faq-q:hover   { color: var(--lp-partner); }
.lifepathcompat-page .faq-icon {
  background: rgba(167, 139, 250, 0.08);
  border-color: rgba(167, 139, 250, 0.32);
  color: var(--lp-both);
}
.lifepathcompat-page .faq-item.open .faq-icon {
  background: var(--lp-both-base);
  color: var(--bg-0);
}

/* ═══════════════════════════════════════════════════════
   PORTED FROM personal-year-page.css
   Quick Answer, Light card, Shadow card, Shadow soft CTA,
   Final CTA children. All scoped to .lifepathcompat-page,
   PY vars rewritten to LP vars.
═══════════════════════════════════════════════════════ */

/* QUICK ANSWER (AI Overview / featured snippet ready) */
.lifepathcompat-page .qa-card {
  background:
    radial-gradient(ellipse 800px 300px at 50% 0%, color-mix(in srgb, var(--lp-signature) 10%, transparent) 0%, transparent 65%),
    var(--bg-card-3);
  border: 1px solid color-mix(in srgb, var(--lp-signature) 25%, transparent);
  border-radius: 24px;
  padding: 40px 44px;
}
@media (max-width: 768px) {
  .lifepathcompat-page .qa-card { padding: 28px 22px; }
}
.lifepathcompat-page .qa-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-2);
  margin: 0 0 28px;
  text-wrap: pretty;
}
.lifepathcompat-page .qa-lead strong { color: var(--lp-signature-bright); font-weight: 600; }
.lifepathcompat-page .qa-rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) {
  .lifepathcompat-page .qa-rows { grid-template-columns: 1fr; }
}
.lifepathcompat-page .qa-block-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: 14px;
}
.lifepathcompat-page .qa-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.lifepathcompat-page .qa-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  background: color-mix(in srgb, var(--lp-signature) 6%, transparent);
  border: 1px solid color-mix(in srgb, var(--lp-signature) 22%, transparent);
  color: var(--text-1);
}
.lifepathcompat-page .qa-chip svg,
.lifepathcompat-page .qa-chip i { color: var(--lp-signature-bright); }
.lifepathcompat-page .qa-chip-warn {
  background: rgba(244, 114, 182, 0.06);
  border-color: rgba(244, 114, 182, 0.25);
}
.lifepathcompat-page .qa-chip-warn svg,
.lifepathcompat-page .qa-chip-warn i { color: #F472B6; }

/* LIGHT CARD (gold accents, brand-constant) */
.lifepathcompat-page .light-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  background: linear-gradient(160deg, rgba(255,217,61,0.05) 0%, var(--bg-card-3) 60%);
  border: 1px solid rgba(255, 217, 61, 0.25);
  border-radius: 28px;
  overflow: hidden;
}
@media (max-width: 900px) {
  .lifepathcompat-page .light-card { grid-template-columns: 1fr; }
}
.lifepathcompat-page .light-card-emblem {
  background: radial-gradient(circle at 50% 50%, rgba(255, 217, 61, 0.18) 0%, transparent 65%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  border-right: 1px solid rgba(255, 217, 61, 0.18);
  padding: 40px;
  position: relative;
}
@media (max-width: 900px) {
  .lifepathcompat-page .light-card-emblem {
    border-right: none;
    border-bottom: 1px solid rgba(255, 217, 61, 0.18);
    min-height: 220px;
  }
}
.lifepathcompat-page .light-numeral {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(160px, 22vw, 300px);
  color: var(--lp-gold);
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-shadow:
    0 0 24px var(--lp-gold-glow),
    0 0 64px rgba(255, 217, 61, 0.4),
    0 0 140px rgba(255, 217, 61, 0.25);
}
.lifepathcompat-page .light-card-body { padding: 48px; }
@media (max-width: 768px) {
  .lifepathcompat-page .light-card-body { padding: 32px 24px; }
}
.lifepathcompat-page .light-card-body .prose em { color: var(--lp-gold-2); }
.lifepathcompat-page .light-card-body .h-card-title { color: var(--lp-gold); }
.lifepathcompat-page .light-card-body .bullet-list li::before {
  background: var(--lp-gold);
  box-shadow: 0 0 10px var(--lp-gold-glow);
}

/* SHADOW CARD DEEP (crimson / burgundy) */
.lifepathcompat-page .shadow-card-deep {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  background: linear-gradient(160deg, rgba(159, 18, 57, 0.18) 0%, rgba(20, 8, 16, 0.9) 60%);
  border: 1px solid rgba(225, 29, 72, 0.28);
  border-radius: 28px;
  overflow: hidden;
}
@media (max-width: 900px) {
  .lifepathcompat-page .shadow-card-deep { grid-template-columns: 1fr; }
}
.lifepathcompat-page .shadow-card-deep-emblem {
  background: radial-gradient(circle at 50% 50%, rgba(225, 29, 72, 0.18) 0%, transparent 65%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  border-right: 1px solid rgba(225, 29, 72, 0.22);
  padding: 40px;
  position: relative;
}
@media (max-width: 900px) {
  .lifepathcompat-page .shadow-card-deep-emblem {
    border-right: none;
    border-bottom: 1px solid rgba(225, 29, 72, 0.22);
    min-height: 220px;
  }
}
.lifepathcompat-page .shadow-numeral {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(160px, 22vw, 300px);
  color: var(--lp-crimson);
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-shadow:
    0 0 24px var(--lp-crimson-glow),
    0 0 72px rgba(225, 29, 72, 0.4),
    0 0 140px rgba(159, 18, 57, 0.3);
}
.lifepathcompat-page .shadow-card-deep-body { padding: 48px; }
@media (max-width: 768px) {
  .lifepathcompat-page .shadow-card-deep-body { padding: 32px 24px; }
}
.lifepathcompat-page .shadow-card-deep-body .prose em { color: var(--lp-crimson-bright); }
.lifepathcompat-page .shadow-card-deep-body .h-card-title { color: var(--lp-crimson-bright); }
.lifepathcompat-page .shadow-card-deep-body .prose strong { color: var(--text-1); }
.lifepathcompat-page .shadow-card-deep-body .bullet-list li::before {
  background: var(--lp-crimson);
  box-shadow: 0 0 10px var(--lp-crimson-glow);
}

/* SHADOW SOFT CTA (additive duplicate; later rule wins) */
.lifepathcompat-page .shadow-soft-cta {
  margin-top: 32px;
  padding: 22px 26px;
  border-radius: 16px;
  background: rgba(225, 29, 72, 0.08);
  border: 1px solid rgba(225, 29, 72, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.lifepathcompat-page .shadow-soft-cta-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: var(--text-1);
}
.lifepathcompat-page .shadow-soft-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--lp-crimson-bright) 0%, var(--lp-crimson) 100%);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 200ms, box-shadow 200ms;
  box-shadow: 0 0 24px rgba(225,29,72,0.35);
  flex-shrink: 0;
}
.lifepathcompat-page .shadow-soft-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(225,29,72,0.55);
}

/* FINAL CTA (full block; later rules override the partial set above) */
.lifepathcompat-page .final-cta-section {
  padding: 0 28px 120px;
}
.lifepathcompat-page .final-cta {
  position: relative;
  padding: 80px 64px;
  border-radius: 32px;
  background:
    radial-gradient(ellipse 1000px 500px at 20% 20%, color-mix(in srgb, var(--lp-signature) 18%, transparent) 0%, transparent 55%),
    radial-gradient(ellipse 800px 500px at 80% 80%, rgba(183, 148, 244, 0.20) 0%, transparent 55%),
    linear-gradient(180deg, #100B26 0%, #0A081E 100%);
  border: 1px solid color-mix(in srgb, var(--lp-signature) 30%, transparent);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .lifepathcompat-page .final-cta {
    grid-template-columns: 1fr;
    padding: 56px 28px;
    gap: 40px;
    text-align: center;
  }
}
.lifepathcompat-page .final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(255,255,255,0.7) 0.6px, transparent 1.2px),
    radial-gradient(circle at 35% 78%, color-mix(in srgb, var(--lp-signature) 50%, transparent) 0.5px, transparent 1.1px),
    radial-gradient(circle at 78% 22%, rgba(255,255,255,0.5) 0.5px, transparent 1.1px),
    radial-gradient(circle at 92% 70%, rgba(183,148,244,0.5) 0.6px, transparent 1.2px);
  pointer-events: none;
  opacity: 0.5;
}
.lifepathcompat-page .final-cta-content { position: relative; }
.lifepathcompat-page .final-cta-side { position: relative; }
.lifepathcompat-page .final-cta h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.05;
  color: var(--text-1);
  margin: 0 0 22px;
  text-wrap: balance;
}
.lifepathcompat-page .final-cta h2 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(180deg, var(--lp-signature-bright) 0%, var(--lp-signature) 60%, var(--lp-signature-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lifepathcompat-page .final-cta p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 48ch;
  margin: 0 0 32px;
}
@media (max-width: 900px) {
  .lifepathcompat-page .final-cta p { margin-left: auto; margin-right: auto; }
}
.lifepathcompat-page .final-cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .lifepathcompat-page .final-cta-buttons { justify-content: center; }
}
.lifepathcompat-page .final-cta-trust {
  font-size: 12.5px;
  color: var(--text-4);
  letter-spacing: 0.04em;
}
.lifepathcompat-page .final-cta-chips {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  background: rgba(15, 13, 46, 0.7);
  border: 1px solid var(--border-card);
  border-radius: 22px;
  backdrop-filter: blur(14px);
}
.lifepathcompat-page .final-cta-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: color-mix(in srgb, var(--lp-signature) 4%, transparent);
  border: 1px solid color-mix(in srgb, var(--lp-signature) 18%, transparent);
  border-radius: 12px;
  font-size: 14px;
  color: var(--text-1);
}
.lifepathcompat-page .final-cta-chip-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--lp-signature) 14%, transparent);
  color: var(--lp-signature-bright);
  flex-shrink: 0;
}
.lifepathcompat-page .final-cta-chip strong { color: var(--lp-signature-bright); }
.lifepathcompat-page .final-cta-chip span.dim { color: var(--text-3); }

/* ═══════════════════════════════════════════════════════
   ADDITIONAL NEW RULES (not in PY source)
═══════════════════════════════════════════════════════ */

/* Italic subtitle modifier - used in HubShadow and BestMatches sec-head */
.lifepathcompat-page .h-italic-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.45;
  color: var(--text-3);
  margin-top: 6px;
  max-width: 60ch;
}
.lifepathcompat-page .h-italic-sub.cold  { color: color-mix(in srgb, var(--lp-crimson-bright) 80%, var(--text-3)); }
.lifepathcompat-page .h-italic-sub.warm  { color: var(--lp-gold); }
.lifepathcompat-page .h-italic-sub-small { font-size: clamp(13px, 1.3vw, 15px); color: var(--text-4); }
.lifepathcompat-page .h-italic-sub-purple { color: var(--lp-violet); }

/* OtherHubs current marker */
.lifepathcompat-page .hub-card.current,
.lifepathcompat-page .hub-card-here {
  border-color: color-mix(in srgb, var(--lp-signature) 55%, transparent);
  box-shadow: 0 0 32px color-mix(in srgb, var(--lp-signature) 18%, transparent);
}

/* RatingsTable footnote */
.lifepathcompat-page .ratings-table-note {
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--text-4);
  font-style: italic;
  text-align: center;
}

/* Pair Communication direction-table modifiers */
.lifepathcompat-page .comm-intro {
  max-width: 70ch;
  margin: 0 auto 28px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-2);
  text-align: center;
}
.lifepathcompat-page .comm-table.dir-1to2 { border-left: 3px solid var(--lp-signature); }
.lifepathcompat-page .comm-table.dir-2to1 { border-left: 3px solid var(--lp-partner); }

/* Related-block (pair page sub-sections wrapper) */
.lifepathcompat-page .related-block { margin-bottom: 48px; }
.lifepathcompat-page .related-block:last-child { margin-bottom: 0; }

/* PairShadow inline soft CTA (used inside .pair-card.shadow) */
.lifepathcompat-page .pair-shadow-cta {
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(225, 29, 72, 0.10);
  border: 1px solid rgba(225, 29, 72, 0.30);
  border-radius: 14px;
  color: var(--text-2);
  font-size: 14px;
}
.lifepathcompat-page .pair-shadow-cta a {
  color: var(--lp-crimson-bright, #FB7185);
  text-decoration: none;
  font-weight: 600;
  margin-left: 8px;
}

/* Secondary ghost button tinted toward LP2 (partner) for pair page CTA row */
.lifepathcompat-page .btn-ghost-lp2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--lp-partner) 50%, transparent);
  border-radius: 999px;
  color: var(--lp-partner);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 200ms, border-color 200ms;
}
.lifepathcompat-page .btn-ghost-lp2:hover {
  background: color-mix(in srgb, var(--lp-partner) 10%, transparent);
  border-color: var(--lp-partner);
}
