/* ============================================================
   Power Curve — Homepage stylesheet (pch-* namespace)
   Loaded only on index.hbs via contentFor "styles".
   All values in px (Ghost screen.css sets html{font-size:62.5%}
   so rem ≠ px; we use px throughout to match the design spec).
   ============================================================ */

/* Animations */
@keyframes pcpulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
@keyframes pcflow {
  to {
    stroke-dashoffset: -24;
  }
}

/* ---- Layout shell ---- */
.home-template .site-content {
  max-width: none;
  padding: 0;
}

/* Header flows into the hero: a medium-navy gradient whose bottom (#0e2e4b)
   equals the hero's top, so the two read as one continuous field — no black
   band, no seam. Stays sticky and in-flow so it never overlaps the hero copy.
   Specificity must clear `html body #site-header.site-header !important` (1,1,2). */
html body.home-template #site-header.site-header {
  background: linear-gradient(180deg, #0e2e4c 0%, #0a2236 100%) !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  /* backdrop blur leaves a bright 1px edge at the header bottom — kill it. */
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
/* Keep the mobile open-menu panel opaque so links stay readable. */
html body.home-template.menu-opened #site-header.site-header {
  background: #0a2236 !important;
}
.pch-root {
  width: 100%;
  overflow-x: hidden;
  font-family: "Instrument Sans", "InstrumentSans", system-ui, sans-serif;
  color: #425466;
  background: #fbf8f2;
  -webkit-font-smoothing: antialiased;
}

/* Max-width container */
.pch-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* 2-column grid helper (section-specific column widths override) */
.pch-2col {
  display: grid;
  gap: 60px;
}

/* Utility: section eyebrow label */
.pch-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.pch-eyebrow--coral {
  color: #ec6659;
}
.pch-eyebrow--dim {
  color: rgba(255, 255, 255, 0.5);
}

/* Dot separator */
.pch-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  vertical-align: middle;
}

/* Buttons */
.pch-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    filter 150ms ease,
    background 150ms ease;
  white-space: nowrap;
}
.pch-btn--coral {
  background: #ec6659;
  color: #fff;
}
.pch-btn--coral:hover {
  filter: brightness(0.93);
  color: #fff;
}
.pch-btn--ghost-light {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.28);
  cursor: default;
}
.pch-btn--ghost-dim {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.pch-btn--ghost-dim:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Arrow link */
.pch-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap 200ms ease;
}
.pch-arrow-link:hover {
  gap: 13px;
}
.pch-arrow-link--coral {
  color: #ec6659;
}
.pch-arrow-link--coral:hover {
  color: #ec6659;
}

/* Pill chips */
.pch-chip {
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 9px 15px;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background 150ms ease,
    color 150ms ease,
    border-color 150ms ease,
    box-shadow 150ms ease;
  white-space: nowrap;
  border: 1px solid;
}
.pch-chip--dark {
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.22);
}
.pch-chip--dark.pch-chip--active,
.pch-chip--dark:focus-visible {
  background: #ec6659;
  color: #fff;
  border-color: #ec6659;
  box-shadow: 0 4px 12px rgba(236, 102, 89, 0.32);
  outline: none;
}
.pch-chip--light {
  background: transparent;
  color: #0a2540;
  border-color: rgba(10, 37, 64, 0.22);
}
.pch-chip--light.pch-chip--active {
  background: #0a2540;
  color: #fff;
  border-color: #0a2540;
}

/* Stat block */
.pch-stat {
}
.pch-stat__value {
  font-family: var(--pc-serif, "Minion Pro", Georgia, serif);
  font-size: 34px;
  font-weight: 500;
  color: #0a2540;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.pch-stat__label {
  font-size: 12px;
  color: #586173;
  margin-top: 6px;
}
.pch-stat--bordered {
  padding-left: 32px;
  border-left: 1px solid #e3ebf0;
}
.pch-stat--light .pch-stat__value {
  color: #fff;
}
.pch-stat--light .pch-stat__label {
  color: rgba(255, 255, 255, 0.55);
}
.pch-stat--bordered-light {
  padding-left: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

/* ---- Section: Section header row ---- */
.pch-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(10, 37, 64, 0.35);
  margin-bottom: 20px;
}
.pch-section-h2 {
  font-family: var(--pc-serif, "Minion Pro", Georgia, serif);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.01em;
  color: #0a2540;
  margin: 0;
}

/* ============================================================
   HERO
   ============================================================ */
.pch-hero {
  position: relative;
  overflow: hidden;
  /* Top edge (#0e2e4b) equals the header gradient's bottom so the header flows
     straight into the hero. Vertical medium→deep navy keeps the top from going
     black; the radial adds depth/glow behind the globe on the right. */
  /* Top (#0a2236) equals the header's bottom and the whole field darkens
     downward, so the header and hero never show a brightness seam. The globe
     glow sits low-right (60% height) and never lightens the top edge. */
  background:
    radial-gradient(
      62% 70% at 82% 62%,
      rgba(38, 84, 128, 0.42) 0%,
      rgba(38, 84, 128, 0) 60%
    ),
    linear-gradient(180deg, #0a2236 0%, #081f37 55%, #06182c 100%);
}
.pch-hero__globe {
  position: absolute;
  top: 50%;
  right: -160px;
  transform: translateY(-50%);
  width: 760px;
  max-width: 70%;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.pch-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 24, 44, 0.5) 26%,
    rgba(7, 24, 44, 0) 64%
  );
  z-index: 0;
}
.pch-hero__inner {
  position: relative;
  z-index: 1;
  /* Bold, intentional lead: generous top/bottom space on first visit. */
  padding-top: 132px;
  padding-bottom: 148px;
}
.pch-hero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}
.pch-hero__meta .pch-eyebrow {
  font-size: 13px;
}
.pch-hero__topic {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.pch-hero__h1 {
  font-family: var(--pc-serif, "Minion Pro", Georgia, serif);
  font-weight: 400;
  font-size: clamp(58px, 9.2vw, 132px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
  max-width: 14ch;
}
.pch-hero__dek {
  font-size: 22px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  margin: 30px 0 0;
  max-width: 46ch;
  text-wrap: balance;
}
.pch-hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.pch-hero__actions .pch-btn {
  padding: 17px 34px;
  font-size: 13px;
}
.pch-hero__byline {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================================
   LIVE SIGNALS
   ============================================================ */
.pch-signals {
  /* Flows from the hero's bottom (#06182c) into the index below. */
  background: #06182c;
}
.pch-signals__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 26px 32px 44px;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0;
}
.pch-signals__label-col {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: none;
  padding-right: 28px;
}
.pch-signals__pulse {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ec6659;
  animation: pcpulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
.pch-signals__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.pch-signals__time {
  display: block;
  font-size: 10px;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 3px;
}
.pch-signal {
  flex: 1;
  min-width: 120px;
  padding: 0 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.pch-signal__name {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
}
.pch-signal__value {
  font-family: var(--pc-serif, "Minion Pro", Georgia, serif);
  font-size: 30px;
  font-weight: 400;
  color: #ec6659;
  line-height: 1.1;
  margin-top: 3px;
  font-variant-numeric: tabular-nums;
}
.pch-signal__spark {
  display: block;
  width: 100%;
  max-width: 120px;
  margin-top: 10px;
}
.pch-signals__cta {
  flex: none;
  align-self: center;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

/* ============================================================
   POWER CURVE INDEX
   ============================================================ */
.pch-index {
  /* Edges stay #06182c (flows from signals; hard-contrasts the light section
     below); the highlight is an interior glow, not a top-edge band. */
  background:
    radial-gradient(
      120% 120% at 78% 56%,
      rgba(30, 74, 112, 0.42) 0%,
      rgba(30, 74, 112, 0) 60%
    ),
    #06182c;
}
.pch-index__grid {
  padding-top: 124px;
  padding-bottom: 84px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}
.pch-idx-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.pch-idx-card {
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.015)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 24px 26px 18px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}
.pch-idx-svg {
  display: block;
  width: 100%;
  overflow: visible;
}
.pch-idx-caption {
  font-size: 12.5px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 14px;
}
.pch-index__info {
}
.pch-index__h2 {
  font-family: var(--pc-serif, "Minion Pro", Georgia, serif);
  font-weight: 500;
  font-size: clamp(26px, 2.5vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 20px 0 0;
}
.pch-index__desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 16px 0 0;
}
.pch-idx-readout {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.pch-idx-value {
  font-family: var(--pc-serif, "Minion Pro", Georgia, serif);
  font-weight: 500;
  font-size: 64px;
  line-height: 0.9;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.pch-idx-delta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(236, 102, 89, 0.16);
  color: #f2917f;
  border: 1px solid rgba(236, 102, 89, 0.3);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
  white-space: nowrap;
}

/* ============================================================
   CHART OF THE WEEK
   ============================================================ */
.pch-chartweek {
  background: #fbf8f2;
  border-top: 1px solid #e3ebf0;
}
.pch-chartweek__grid {
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 60px;
  align-items: center;
}
.pch-chartweek__card {
  background: linear-gradient(180deg, #fff, #faf7f1);
  border: 1px solid #e3ebf0;
  border-radius: 12px;
  padding: 24px 26px;
  box-shadow: 0 6px 18px rgba(10, 37, 64, 0.08);
}
.pch-chartweek__img {
  display: block;
  width: 100%;
}
.pch-chartweek__caption {
  font-size: 13px;
  font-style: italic;
  color: #586173;
  margin-top: 14px;
}
.pch-chartweek__h2 {
  font-family: var(--pc-serif, "Minion Pro", Georgia, serif);
  font-weight: 500;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: #0a2540;
  margin: 14px 0 0;
}
.pch-chartweek__desc {
  font-size: 16px;
  line-height: 1.6;
  color: #425466;
  margin: 18px 0 0;
}
.pch-chartweek__stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.pch-chartweek__info .pch-arrow-link {
  margin-top: 28px;
}

/* ============================================================
   LATEST ANALYSIS
   ============================================================ */
.pch-latest {
  background: #fff;
  border-top: 1px solid #e3ebf0;
}
.pch-latest .pch-wrap {
  padding-top: 72px;
  padding-bottom: 72px;
}
.pch-latest__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(10, 37, 64, 0.35);
}
.pch-latest__h2 {
  font-family: var(--pc-serif, "Minion Pro", Georgia, serif);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.01em;
  color: #0a2540;
  margin: 0;
}
.pch-latest__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}
.pch-latest__featured {
  display: block;
  text-decoration: none;
  transition: transform 250ms ease;
}
.pch-latest__featured:hover {
  transform: translateY(-3px);
}
.pch-latest__feat-img {
  width: 100%;
  aspect-ratio: 1.8 / 1;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
}
/* Curated soft-flow gradient as the default when a post has no feature image.
   Cards rotate through the set so adjacent placeholders differ. */
.pch-latest__feat-img--placeholder {
  background: url("../images/pch-grad-1.svg") center / cover no-repeat;
}
.pch-latest__feat-img--placeholder.pch-grad--2 {
  background-image: url("../images/pch-grad-2.svg");
}
.pch-latest__feat-img--placeholder.pch-grad--3 {
  background-image: url("../images/pch-grad-3.svg");
}
.pch-latest__feat-img--placeholder.pch-grad--4 {
  background-image: url("../images/pch-grad-4.svg");
}
.pch-latest__feat-img--placeholder.pch-grad--5 {
  background-image: url("../images/pch-grad-5.svg");
}
.pch-latest__feat-img--placeholder.pch-grad--6 {
  background-image: url("../images/pch-grad-6.svg");
}
.pch-latest__feat-meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #ec6659;
  margin-top: 18px;
}
.pch-latest__feat-title {
  font-family: var(--pc-serif, "Minion Pro", Georgia, serif);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: #0a2540;
  margin: 9px 0 0;
  text-wrap: balance;
}
.pch-latest__feat-dek {
  font-size: 15.5px;
  line-height: 1.55;
  color: #425466;
  margin: 12px 0 0;
  max-width: 52ch;
}
.pch-latest__feat-byline {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #586173;
  margin-top: 16px;
}
.pch-latest__list {
  border-bottom: 1px solid #e3ebf0;
}
.pch-latest__item {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid #e3ebf0;
  text-decoration: none;
  align-items: baseline;
  transition: opacity 150ms ease;
}
.pch-latest__item:hover {
  opacity: 0.65;
}
.pch-latest__num {
  font-family: var(--pc-serif, "Minion Pro", Georgia, serif);
  font-size: 15px;
  color: #ec6659;
  font-variant-numeric: tabular-nums;
  flex: none;
  width: 26px;
}
.pch-latest__item-meta {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #586173;
}
.pch-latest__item-title {
  font-family: var(--pc-serif, "Minion Pro", Georgia, serif);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.24;
  color: #0a2540;
  margin: 5px 0 0;
  text-wrap: balance;
}

/* ============================================================
   FORWARD CALLS
   ============================================================ */
.pch-calls {
  background: #f4f0e7;
  border-top: 1px solid #e3ebf0;
  border-bottom: 1px solid #e3ebf0;
}
.pch-calls__grid {
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
}
.pch-calls__h2 {
  font-family: var(--pc-serif, "Minion Pro", Georgia, serif);
  font-weight: 500;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: #0a2540;
  margin: 16px 0 0;
}
.pch-calls__desc {
  font-size: 16px;
  line-height: 1.6;
  color: #425466;
  margin: 18px 0 0;
  max-width: 40ch;
}
.pch-calls__scenario-panel {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(10, 37, 64, 0.14);
}
.pch-calls__scenario-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #586173;
  margin-bottom: 14px;
}
.pch-scenario-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pch-calls__scenario-desc {
  font-size: 14px;
  line-height: 1.55;
  color: #586173;
  margin: 16px 0 0;
}
.pch-call-list {
  border-bottom: 1px solid rgba(10, 37, 64, 0.12);
}
.pch-call {
  padding: 22px 0;
  border-top: 1px solid rgba(10, 37, 64, 0.12);
}
.pch-call__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
}
.pch-call__statement {
  font-size: 16px;
  line-height: 1.4;
  color: #0a2540;
  font-weight: 600;
}
.pch-call__readout {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex: none;
}
.pch-call__shift {
  font-size: 11px;
  font-weight: 700;
}
.pch-call__prob {
  font-family: var(--pc-serif, "Minion Pro", Georgia, serif);
  font-size: 24px;
  color: #ec6659;
  font-variant-numeric: tabular-nums;
}
.pch-call__bar-track {
  margin-top: 12px;
  height: 6px;
  border-radius: 999px;
  background: rgba(10, 37, 64, 0.1);
  overflow: hidden;
}
.pch-call__bar {
  height: 100%;
  border-radius: 999px;
  background: #ec6659;
  transition: width 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.pch-call__finding {
  font-size: 13.5px;
  line-height: 1.5;
  color: #425466;
  margin-top: 12px;
}
.pch-call__finding b {
  color: #0a2540;
  font-weight: 600;
}
.pch-call__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #586173;
}
.pch-call__report {
  color: #ec6659;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: opacity 150ms ease;
}
a.pch-call__report:hover {
  opacity: 0.68;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pch-call__dot {
  color: #a3acb8;
}

/* ============================================================
   WORLD MAP
   ============================================================ */
.pch-map {
  /* Bottom edge #081f37 = flagship's top edge → the two flow together. */
  background:
    radial-gradient(
      125% 120% at 18% 42%,
      rgba(28, 72, 112, 0.4) 0%,
      rgba(28, 72, 112, 0) 60%
    ),
    linear-gradient(180deg, #0e2c4a 0%, #081f37 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.pch-map__inner {
  padding-top: 84px;
  padding-bottom: 84px;
}
.pch-map__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.pch-map__h2 {
  font-family: var(--pc-serif, "Minion Pro", Georgia, serif);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 12px 0 0;
}
.pch-map__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 30ch;
  text-align: right;
  line-height: 1.5;
}
.pch-map__grid {
  display: grid;
  grid-template-columns: 1.9fr 1fr;
  gap: 44px;
  align-items: center;
  margin-top: 28px;
}
.pch-region-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.pch-map__canvas {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px;
}
.pch-map__svg {
  display: block;
  width: 100%;
}
/* Region panel */
.pch-region-panel {
}
.pch-rpanel {
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 28px 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}
.pch-rpanel__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.pch-rpanel__name {
  font-family: var(--pc-serif, "Minion Pro", Georgia, serif);
  font-weight: 500;
  font-size: 27px;
  color: #fff;
  margin: 8px 0 0;
  line-height: 1.1;
}
.pch-rpanel__idx-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-top: 16px;
}
.pch-rpanel__idx {
  font-family: var(--pc-serif, "Minion Pro", Georgia, serif);
  font-size: 44px;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.pch-rpanel__delta {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
}
.pch-rpanel__delta--pos {
  background: rgba(43, 168, 160, 0.18);
  color: #6fd3c9;
}
.pch-rpanel__delta--neg {
  background: rgba(236, 102, 89, 0.18);
  color: #f2917f;
}
.pch-rpanel__note-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
  letter-spacing: 0.03em;
}
.pch-rpanel__note {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.74);
  margin: 18px 0 0;
}
.pch-rpanel__metrics {
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.pch-rpanel__metric {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.pch-rpanel__metric:last-child {
  border-bottom: none;
}
.pch-rpanel__metric-label {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
}
.pch-rpanel__metric-value {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   FLAGSHIP REPORT
   ============================================================ */
.pch-flagship {
  /* Top edge #081f37 = map's bottom edge → flows from the map above. */
  background:
    radial-gradient(
      100% 120% at 26% 50%,
      rgba(28, 72, 112, 0.32) 0%,
      rgba(28, 72, 112, 0) 60%
    ),
    linear-gradient(180deg, #081f37 0%, #061626 100%);
}
.pch-flagship__grid {
  padding-top: 92px;
  padding-bottom: 92px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}
.pch-flagship__h2 {
  font-family: var(--pc-serif, "Minion Pro", Georgia, serif);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: #fff;
  margin: 16px 0 0;
}
.pch-flagship__desc {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.74);
  margin: 20px 0 0;
  max-width: 46ch;
}
.pch-flagship__bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  max-width: 52ch;
}
.pch-flagship__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
}
.pch-flagship__bullets li::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ec6659;
  margin-top: 9px;
}
.pch-flagship__actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.pch-flagship__stats {
  display: flex;
  gap: 0;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  flex-wrap: wrap;
}
.pch-flagship__stats .pch-stat--light {
  padding-right: 32px;
}
.pch-flagship__cover-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1600px;
}
.pch-flagship__cover-glow {
  position: absolute;
  width: 82%;
  height: 82%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(112, 142, 188, 0.42),
    rgba(10, 37, 64, 0) 70%
  );
  filter: blur(36px);
  pointer-events: none;
}
.pch-flagship__cover {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 0.72;
  border-radius: 6px;
  overflow: hidden;
  transform: rotateY(-19deg) rotateX(5deg) rotateZ(-1deg);
  box-shadow:
    -40px 50px 90px rgba(0, 0, 0, 0.55),
    -10px 14px 30px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.14);
}
.pch-flagship__cover-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pch-flagship__cover-text {
  position: absolute;
  inset: 0;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
}
.pch-flagship__cover-brand {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.5;
}
.pch-flagship__cover-title {
  margin-top: auto;
  font-family: var(--pc-serif, "Minion Pro", Georgia, serif);
  font-weight: 500;
  font-size: 46px;
  line-height: 0.98;
  color: #fff;
}
.pch-flagship__cover-sub {
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 14px;
  max-width: 24ch;
}
.pch-flagship__cover-tag {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 16px;
}

/* ============================================================
   FROM THE EDITOR
   ============================================================ */
.pch-editor {
  background: transparent;
  border: none;
}
.pch-editor__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 88px 32px;
}
.pch-editor__quote-mark {
  font-family: var(--pc-serif, "Minion Pro", Georgia, serif);
  font-size: 80px;
  line-height: 1;
  color: #ec6659;
  height: 44px;
  overflow: hidden;
  margin-top: 14px;
}
.pch-editor__quote {
  font-family: var(--pc-serif, "Minion Pro", Georgia, serif);
  font-weight: 400;
  font-size: clamp(26px, 2.9vw, 36px);
  line-height: 1.38;
  color: #0a2540;
  margin: 8px 0 0;
  border: none;
  padding: 0;
  background: transparent;
}
.pch-editor__attr {
  margin-top: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #425466;
}

/* ============================================================
   TOPICS
   ============================================================ */
.pch-topics {
  background: #fff;
  border-top: 1px solid #e3ebf0;
}
.pch-topics .pch-wrap {
  padding-top: 72px;
  padding-bottom: 72px;
}
.pch-topics__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(10, 37, 64, 0.35);
}
.pch-topics__h2 {
  font-family: var(--pc-serif, "Minion Pro", Georgia, serif);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.01em;
  color: #0a2540;
  margin: 0;
}
.pch-topics__sub {
  font-size: 14px;
  color: #586173;
  margin-top: 8px;
}
.pch-topics__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  column-gap: 56px;
}
.pch-topic {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #e3ebf0;
  text-decoration: none;
  transition: padding-left 150ms ease;
}
.pch-topic:hover {
  padding-left: 6px;
}
.pch-topic__name {
  font-family: var(--pc-serif, "Minion Pro", Georgia, serif);
  font-size: 20px;
  font-weight: 500;
  color: #0a2540;
}
.pch-topic__count {
  font-size: 13px;
  color: #586173;
  white-space: nowrap;
}
.pch-topic__count b {
  color: #ec6659;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

/* ============================================================
   PODCAST
   ============================================================ */
.pch-podcast {
  background: #fbf8f2;
  border-top: 1px solid #e3ebf0;
}
.pch-podcast .pch-wrap {
  padding-top: 72px;
  padding-bottom: 72px;
}
.pch-podcast__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(10, 37, 64, 0.35);
}
.pch-podcast__h2 {
  font-family: var(--pc-serif, "Minion Pro", Georgia, serif);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.01em;
  color: #0a2540;
  margin: 0;
}
.pch-podcast__card {
  background: radial-gradient(120% 140% at 90% 10%, #16395d, #0c2843 60%);
  border-radius: 14px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
.pch-podcast__play {
  flex: none;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ec6659;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(236, 102, 89, 0.35);
  transition:
    transform 150ms ease,
    filter 150ms ease;
  text-decoration: none;
}
.pch-podcast__play:hover {
  transform: scale(1.05);
  filter: brightness(0.96);
}
.pch-podcast__info {
  flex: 1.4;
  min-width: 240px;
}
.pch-podcast__title {
  font-family: var(--pc-serif, "Minion Pro", Georgia, serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: #fff;
  margin: 8px 0 0;
}
.pch-podcast__meta {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 8px;
}
.pch-podcast__wave {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.pch-podcast__wave img {
  flex: 1;
  width: 100%;
  max-width: 360px;
  opacity: 0.95;
}
.pch-podcast__time {
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.5);
  flex: none;
}

/* ============================================================
   MEMBERSHIP
   ============================================================ */
.pch-membership {
  /* Bottom edge #081f37 = newsletter's top edge → the two flow together. */
  background:
    radial-gradient(
      115% 130% at 85% 46%,
      rgba(30, 74, 112, 0.42) 0%,
      rgba(30, 74, 112, 0) 58%
    ),
    linear-gradient(180deg, #0e2c4a 0%, #081f37 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.pch-membership__grid {
  padding-top: 84px;
  padding-bottom: 84px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.pch-membership__h2 {
  font-family: var(--pc-serif, "Minion Pro", Georgia, serif);
  font-weight: 500;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: #fff;
  margin: 16px 0 0;
  text-wrap: balance;
}
.pch-membership__desc {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.74);
  margin: 20px 0 0;
  max-width: 46ch;
}
.pch-membership__actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.pch-membership__card {
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 12px 26px 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}
.pch-membership__card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  padding: 18px 0 4px;
}
.pch-benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.pch-benefit__icon {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(236, 102, 89, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ec6659;
}
.pch-benefit__title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.pch-benefit__desc {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 3px;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.pch-newsletter {
  position: relative;
  overflow: hidden;
  /* Light section, matching the podcast section above. */
  background: #fbf8f2;
  border-top: 1px solid #e3ebf0;
}
.pch-newsletter__bg {
  display: none;
}
.pch-newsletter__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 32px;
  text-align: center;
}
.pch-newsletter__h2 {
  font-family: var(--pc-serif, "Minion Pro", Georgia, serif);
  font-weight: 500;
  font-size: clamp(30px, 3.4vw, 40px);
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: #0a2540;
  margin: 0;
}
.pch-newsletter__desc {
  font-size: 16px;
  line-height: 1.6;
  color: #586173;
  margin: 14px 0 0;
}
.pch-newsletter__form {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 30px auto 0;
  flex-wrap: wrap;
}
.pch-newsletter__input {
  flex: 1;
  min-width: 200px;
  padding: 15px 18px;
  border-radius: 8px;
  border: 1px solid rgba(10, 37, 64, 0.18);
  background: #fff;
  color: #0a2540;
  font-family: inherit;
  font-size: 15px;
}
.pch-newsletter__form .pch-btn {
  padding: 15px 28px;
}
.pch-newsletter__form .message-success,
.pch-newsletter__form .message-error {
  display: none;
  width: 100%;
  font-size: 16px;
  color: #586173;
  margin: 8px 0 0;
}
.pch-newsletter__form.success .message-success,
.pch-newsletter__form.error .message-error {
  display: block;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .pch-index__grid,
  .pch-chartweek__grid,
  .pch-latest__grid,
  .pch-calls__grid,
  .pch-map__grid,
  .pch-flagship__grid,
  .pch-membership__grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .pch-hero__globe {
    display: none;
  }
  .pch-hero__inner {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .pch-map__desc {
    text-align: left;
  }
  .pch-flagship__cover-wrap {
    display: none;
  }
  .pch-signals__inner {
    gap: 12px 0;
  }
  .pch-signal {
    min-width: calc(50% - 24px);
  }
  .pch-signals__cta {
    border-left: none;
    padding-left: 0;
    margin-top: 12px;
  }
}
@media (max-width: 560px) {
  .pch-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
  .pch-signals__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .pch-hero__inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .pch-index__grid,
  .pch-chartweek__grid,
  .pch-flagship__grid,
  .pch-membership__grid {
    gap: 30px !important;
  }
  .pch-signal {
    flex: 1 1 40%;
    border-left: none;
    padding: 10px 0;
  }
  .pch-signals__label-col {
    width: 100%;
    padding-right: 0;
    margin-bottom: 4px;
  }
  .pch-latest__feat-title {
    font-size: 26px;
  }
  .pch-podcast__card {
    padding: 24px 20px;
  }
}
