.post-body .post-body {
  --bg: #f7f6fb;
  --bg-soft: #f1eff9;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-solid: #ffffff;
  --surface-soft: #f8f6ff;
  --surface-tint: #f1ecff;
  --line: rgba(15, 23, 42, 0.08);
  --line-strong: rgba(15, 23, 42, 0.14);
  --text: #0f172a;
  --muted: #5b6475;
  --brand: #6f3ff5;
  --brand-strong: #4f23d9;
  --brand-soft: #f0e9ff;
  --brand-mid: #956fff;
  --brand-glow: rgba(111, 63, 245, 0.16);
  --amber: #b7791f;
  --amber-soft: #fef3dc;
  --danger: #b94b55;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --shadow-xl: 0 32px 80px rgba(15, 23, 42, 0.09);
  --shadow-lg: 0 22px 56px rgba(15, 23, 42, 0.07);
  --shadow-md: 0 14px 28px rgba(15, 23, 42, 0.06);
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
}
.post-body .stack h2,
.post-body .stack h3,
.post-body .stack p {
  margin: 0;
}
.post-body .stack {
  display: grid;
  gap: 20px;
}
.post-body .glass,
.post-body .section-card,
.post-body .question-card,
.post-body .gauge-card,
.post-body .solution-card,
.post-body .opportunity-card,
.post-body .predominant-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}
.post-body .hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}
.post-body .hero-main,
.post-body .section-card,
.post-body .wave-panel,
.post-body .predominant-card,
.post-body .radar-card {
  border-radius: var(--radius-xl);
}
.post-body .hero-main {
  position: relative;
  overflow: hidden;
  padding: var(--space-5);
  background:
        radial-gradient(circle at 84% 14%, rgba(149, 111, 255, 0.18), transparent 18%),
        radial-gradient(circle at 12% 88%, rgba(15, 159, 153, 0.08), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(249, 250, 251, 0.88) 100%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-xl);
}
.post-body .hero-main::after {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -72px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(149, 111, 255, 0.12) 52%, transparent 70%);
}
.post-body .hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-3);
}
.post-body .eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(111, 63, 245, 0.08);
  color: var(--brand-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.post-body .hero-copy p {
  max-width: 76ch;
  color: var(--muted);
  line-height: 1.72;
  font-size: 1rem;
}
.post-body .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-2);
}
.post-body .stat-pill {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}
.post-body .stat-pill svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  color: var(--brand-strong);
  margin-bottom: 18px;
}
.post-body .stat-pill strong,
.post-body .stat-pill span {
  display: block;
}
.post-body .stat-pill strong {
  font-size: 1rem;
  letter-spacing: -0.03em;
}
.post-body .stat-pill span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}
.post-body .wave-panel {
  padding: 30px var(--space-4);
  display: grid;
  gap: 18px;
  align-content: start;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 246, 255, 0.96) 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(111, 63, 245, 0.08);
}
.post-body .wave-panel-head {
  display: flex;
  align-items: start;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.post-body .wave-panel-copy {
  display: grid;
  gap: 10px;
  max-width: 68ch;
}
.post-body .wave-panel-copy h2 {
  font-size: clamp(1.35rem, 1.08rem + 0.92vw, 2rem);
  letter-spacing: -0.04em;
}
.post-body .wave-panel-copy p {
  color: var(--muted);
  line-height: 1.65;
  max-width: 62ch;
}
.post-body .waves-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.post-body .wave-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 12px;
  align-items: start;
  height: 100%;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(111, 63, 245, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}
.post-body .wave-badge {
  width: 52px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-self: start;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff 0%, #f0e9ff 100%);
  border: 1px solid rgba(111, 63, 245, 0.18);
  color: var(--brand-strong);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}
.post-body .wave-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
  align-content: start;
}
.post-body .wave-copy h3 {
  font-size: 1rem;
  letter-spacing: -0.02em;
}
.post-body .wave-copy p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}
.post-body .section-card,
.post-body .radar-card {
  padding: var(--space-4);
}
.post-body .section-card,
.post-body .radar-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}
.post-body .section-header {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}
.post-body .section-header h2 {
  font-size: clamp(1.35rem, 1.12rem + 0.9vw, 2rem);
  letter-spacing: -0.04em;
}
.post-body .section-header p {
  color: var(--muted);
  line-height: 1.65;
  max-width: 74ch;
}
.post-body .question-intro {
  gap: var(--space-1);
  margin-bottom: var(--space-2);
}
.post-body .question-intro p {
  max-width: 82ch;
}
.post-body .question-progress {
  display: grid;
  gap: 10px;
  margin-bottom: var(--space-3);
}
.post-body .question-progress-top {
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
  color: var(--muted);
  font-size: 0.94rem;
}
.post-body .progress-track,
.post-body .solution-bar,
.post-body .wave-meter-track {
  width: 100%;
  overflow: hidden;
  border-radius: 999px;
}
.post-body .progress-track {
  height: 10px;
  background: rgba(111, 63, 245, 0.12);
}
.post-body .progress-bar {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-strong) 0%, var(--brand) 52%, var(--brand-mid) 100%);
  transition: width 320ms cubic-bezier(.22,1,.36,1);
}
.post-body .questions-grid {
  display: grid;
  gap: var(--space-2);
}
.post-body .question-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(15, 23, 42, 0.06);
}
.post-body .question-title {
  margin-bottom: var(--space-2);
  font-size: 1.04rem;
  line-height: 1.52;
  letter-spacing: -0.01em;
  max-width: 88ch;
}
.post-body .likert-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 14px;
}
.post-body .likert-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.post-body .likert-option label {
  min-height: 96px;
  padding: 18px 18px;
  display: grid;
  gap: 10px;
  place-items: center;
  text-align: center;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease;
}
.post-body .likert-option label:hover {
  transform: translateY(-2px);
  border-color: rgba(111, 63, 245, 0.24);
  box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, #ffffff 0%, #f7f3ff 100%);
}
.post-body .likert-option input:checked + label {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #fdfbff 0%, #f1ebff 100%);
  border-color: rgba(111, 63, 245, 0.4);
  box-shadow: 0 14px 28px rgba(111, 63, 245, 0.14);
}
.post-body .scale-value {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff 0%, #f1ebff 100%);
  color: var(--brand-strong);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  transition: background 220ms ease, color 220ms ease;
}
.post-body .scale-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
  transition: color 220ms ease;
}
.post-body .likert-option input:checked + label .scale-value {
  background: linear-gradient(135deg, var(--brand-strong) 0%, var(--brand) 100%);
  color: #ffffff;
}
.post-body .likert-option input:checked + label .scale-label {
  color: var(--brand-strong);
}
.post-body .actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-top: var(--space-3);
}
.post-body .feedback {
  min-height: 24px;
  color: var(--danger);
  font-size: 0.95rem;
  font-weight: 700;
}
.post-body .button {
  appearance: none;
  border: 0;
  border-radius: 18px;
  padding: 16px 22px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-strong) 0%, var(--brand) 55%, var(--brand-mid) 100%);
  font-size: 0.96rem;
  font-weight: 800;
  box-shadow: 0 18px 30px rgba(111, 63, 245, 0.22);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}
.post-body .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 34px rgba(111, 63, 245, 0.28);
  filter: saturate(1.05);
}
.post-body .results {
  display: none;
  gap: var(--space-3);
}
.post-body .results.visible {
  display: grid;
}
.post-body .fade-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease, transform 560ms ease;
}
.post-body .fade-section.revealed {
  opacity: 1;
  transform: translateY(0);
}
.post-body .predominant-card {
  position: relative;
  overflow: hidden;
  padding: var(--space-4);
  background:
        radial-gradient(circle at top right, rgba(149, 111, 255, 0.18), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}
.post-body .predominant-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 340px);
  gap: var(--space-3);
  align-items: stretch;
}
.post-body .predominant-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  margin-bottom: var(--space-2);
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.post-body .predominant-copy {
  display: grid;
  align-content: center;
  gap: 10px;
}
.post-body .predominant-copy h2 {
  font-size: clamp(1.7rem, 1.25rem + 1.2vw, 2.5rem);
  letter-spacing: -0.05em;
  line-height: 0.98;
}
.post-body .predominant-copy h3 {
  color: var(--brand-strong);
  font-size: 1.08rem;
  line-height: 1.48;
}
.post-body .predominant-copy p {
  color: var(--muted);
  line-height: 1.72;
}
.post-body .wave-meter {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(248, 245, 255, 0.98) 0%, rgba(241, 235, 255, 0.94) 100%);
  border: 1px solid rgba(111, 63, 245, 0.1);
}
.post-body .wave-meter-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
}
.post-body .wave-meter-value {
  color: var(--brand-strong);
  font-size: clamp(2.6rem, 2rem + 1vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.9;
}
.post-body .wave-meter-label {
  display: grid;
  gap: 6px;
}
.post-body .wave-meter-label strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}
.post-body .wave-meter-label span,
.post-body .wave-meter p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}
.post-body .wave-meter-track {
  height: 8px;
  background: rgba(111, 63, 245, 0.14);
}
.post-body .wave-meter-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-strong) 0%, var(--brand) 58%, var(--brand-mid) 100%);
  transition: width 820ms cubic-bezier(.22,1,.36,1);
}
.post-body .gauges-grid,
.post-body .solutions-grid,
.post-body .opportunities-grid {
  display: grid;
  gap: var(--space-2);
  align-items: stretch;
}
.post-body .gauges-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.post-body .gauge-card {
  padding: 24px 20px;
  border-radius: 28px;
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.84);
}
.post-body .gauge {
  --value: 0deg;
  width: 152px;
  height: 152px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
        radial-gradient(circle at center, #ffffff 0 58%, transparent 59% 100%),
        conic-gradient(from -90deg, #b8a2ff 0deg, #8f69ff calc(var(--value) * 0.62), #4f23d9 var(--value), rgba(79, 35, 217, 0.12) var(--value), rgba(79, 35, 217, 0.12) 360deg);
  box-shadow: inset 0 0 0 1px rgba(111, 63, 245, 0.08);
}
.post-body .gauge::before {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  box-shadow: inset 0 0 0 1px rgba(111, 63, 245, 0.08);
}
.post-body .gauge-center {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2px;
}
.post-body .gauge-value {
  color: var(--brand-strong);
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}
.post-body .gauge-max {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}
.post-body .gauge-card h3 {
  font-size: 1rem;
}
.post-body .gauge-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}
.post-body .solutions-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.post-body .solution-card {
  padding: 28px;
  border-radius: 26px;
  display: grid;
  gap: 20px;
  height: 100%;
  align-content: start;
  grid-template-rows: auto auto 1fr;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 249, 252, 0.96) 100%);
  border: 1px solid rgba(111, 63, 245, 0.08);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
}
.post-body .solution-card.high {
  border-color: rgba(111, 63, 245, 0.24);
  box-shadow: 0 18px 40px rgba(79, 35, 217, 0.12);
}
.post-body .solution-card.medium {
  border-color: rgba(111, 63, 245, 0.16);
}
.post-body .solution-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}
.post-body .solution-chip,
.post-body .opportunity-tag {
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.post-body .solution-chip {
  padding: 6px 12px;
  width: fit-content;
  max-width: 100%;
  background: rgba(111, 63, 245, 0.08);
  color: var(--brand-strong);
}
.post-body .solution-copy {
  display: grid;
  gap: 10px;
  min-width: 0;
  align-content: start;
}
.post-body .solution-headline {
  display: grid;
  gap: 10px;
  align-content: start;
}
.post-body .solution-card h3 {
  font-size: 1.06rem;
  letter-spacing: -0.02em;
  line-height: 1.28;
}
.post-body .solution-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.68;
}
.post-body .solution-meta {
  display: grid;
  gap: 12px;
  margin-top: auto;
}
.post-body .solution-bar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.post-body .solution-bar-head strong {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
}
.post-body .solution-bar {
  height: 8px;
  background: rgba(111, 63, 245, 0.1);
}
.post-body .solution-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-strong) 0%, var(--brand) 62%, var(--brand-mid) 100%);
  transition: width 700ms cubic-bezier(.22,1,.36,1);
}
.post-body .solution-impact {
  margin-top: 8px;
}
.post-body .opportunities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  justify-content: center;
}
.post-body .opportunity-card {
  flex: 1 1 280px;
  max-width: 320px;
  padding: 24px;
  border-radius: 28px;
  display: grid;
  gap: 14px;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 250, 241, 0.98) 100%);
  border: 1px solid rgba(111, 63, 245, 0.08);
}
.post-body .opportunity-card:nth-child(odd) {
  background: linear-gradient(180deg, #fafdff 0%, #eef5ff 100%);
}
.post-body .opportunity-tag {
  width: fit-content;
  padding: 8px 12px;
  background: var(--amber-soft);
  color: #996313;
}
.post-body .opportunity-card:nth-child(odd) .opportunity-tag {
  background: var(--brand-soft);
  color: var(--brand-strong);
}
.post-body .opportunity-card h3 {
  font-size: 1.04rem;
  line-height: 1.4;
}
.post-body .opportunity-card p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.62;
}
.post-body .radar-card {
  background: var(--surface);
}
.post-body .radar-stage {
  width: 100%;
  min-height: 580px;
  padding: 18px;
}
.post-body .footer-note {
  margin-top: var(--space-2);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
@media (max-width: 1080px) {
  .post-body .hero,
  .post-body .predominant-grid,
  .post-body .gauges-grid,
  .post-body .solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .post-body .waves-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .post-body .hero {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1280px) {
  .post-body .likert-grid {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
  }
}
@media (max-width: 760px) {
  .post-body .actions,
  .post-body .question-progress-top,
  .post-body .wave-meter-top,
  .post-body .wave-panel-head {
    flex-direction: column;
        align-items: start;
  }
  .post-body .hero-main,
  .post-body .wave-panel,
  .post-body .section-card,
  .post-body .predominant-card,
  .post-body .radar-card {
    padding: 24px;
  }
  .post-body .hero-stats,
  .post-body .likert-grid,
  .post-body .waves-list,
  .post-body .gauges-grid,
  .post-body .solutions-grid,
  .post-body .predominant-grid {
    grid-template-columns: 1fr;
  }
  .post-body .solution-header {
    grid-template-columns: 1fr;
  }
  .post-body .opportunities-grid {
    display: grid;
        grid-template-columns: 1fr;
        justify-content: stretch;
  }
  .post-body .opportunity-card {
    max-width: none;
  }
  .post-body .likert-option label {
    min-height: 78px;
  }
  .post-body .gauge {
    width: 144px;
        height: 144px;
  }
  .post-body .radar-stage {
    min-height: 440px;
  }
}
.post-body #resultsSection {
  scroll-margin-top: 6rem;
}