/* =====================================================
   PROPHET — warm "spice" theme
   Scoped to body.theme-prophet. Adopts the same Soft Dark
   FORM as the rest of the site, but keeps PROPHET's warm
   spice / sand / gold COLOR identity.
   Loaded AFTER site.css.
   ===================================================== */

body.theme-prophet {
  /* legacy accent tokens */
  --orange:   #FF6A1A;
  --orange-2: #FF8F44;

  /* spice palette */
  --spice:        #FF6A1A;
  --spice-bright: #FF9442;
  --ember:        #B23A0C;
  --gold:         #FFC24B;
  --gold-hi:      #FFE3AC;

  /* warm sand text */
  --cream:       #F4E7D4;
  --cream-dim:   rgba(244, 231, 212, 0.72);
  --cream-faint: rgba(244, 231, 212, 0.10);

  /* warm near-black surfaces (same form as base, warmer hue) */
  --surface-top: #241812;
  --surface-bot: #150d08;
  --surface-2:   #2c1d14;
  --well:        #0e0805;

  /* warm hairlines */
  --hair:   rgba(255, 170, 90, 0.09);
  --hair-2: rgba(255, 170, 90, 0.18);

  /* warm accent */
  --accent:     #FF9442;
  --accent-dim: #FF6A1A;

  /* losing months on the equity curve (warm red) */
  --negative:      #FF6A52;
  --negative-glow: rgba(255, 106, 82, 0.35);

  /* warm tactile raised pill (spice instead of light grey) */
  --raised-top: #FF9442;
  --raised-bot: #FF6A1A;

  /* warm field behind everything */
  --bg-0: #1b120c;
  --bg-1: #130c07;
  --bg-2: #0b0704;
}

/* ---------- strip the old animated dune background ---------- */
.prophet-bg { display: none; }
body.theme-prophet::before,
body.theme-prophet::after { content: none; background: none; }

/* dark text that sits on the warm raised pills */
body.theme-prophet .nav__links a.is-active,
body.theme-prophet .nav__lang button[aria-pressed="true"],
body.theme-prophet .btn--primary,
body.theme-prophet .modal__tab[aria-pressed="true"],
body.theme-prophet .socials a:hover {
  color: #1c0d05;
}

/* warm glow under the raised pills */
body.theme-prophet .nav__links a.is-active,
body.theme-prophet .nav__lang::before,
body.theme-prophet .modal__tab[aria-pressed="true"] {
  box-shadow:
    inset 0 1px 0 rgba(255, 224, 188, 0.7),
    0 5px 14px -4px rgba(255, 110, 30, 0.6);
}
body.theme-prophet .btn--primary {
  box-shadow:
    inset 0 1px 0 rgba(255, 224, 188, 0.7),
    0 8px 22px -8px rgba(255, 110, 30, 0.55);
}
body.theme-prophet .btn--primary:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 232, 200, 0.85),
    0 12px 28px -8px rgba(255, 110, 30, 0.7);
}

/* ---------- warm accents ---------- */
body.theme-prophet .eyebrow { color: var(--spice-bright); }
body.theme-prophet .cat-head h2 { color: var(--gold-hi); }
body.theme-prophet .card__name { color: var(--gold-hi); }

/* cat-head count becomes a warm tactile pill (live badge) */
body.theme-prophet .cat-head__count {
  color: #1c0d05;
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--spice-bright) 0%, var(--spice) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 224, 188, 0.6),
    0 5px 14px -4px rgba(255, 110, 30, 0.55);
}

/* KPI accents */
body.theme-prophet .kpi--accent .kpi__value {
  color: var(--gold);
  text-shadow: 0 0 26px rgba(255, 184, 64, 0.4);
}
body.theme-prophet .card__stat-value { color: var(--gold); }
body.theme-prophet .kpi-card__badge::before {
  background: var(--spice);
  box-shadow: 0 0 0 4px rgba(255, 110, 30, 0.18);
}

/* footer */
body.theme-prophet footer { color: var(--cream-dim); }

/* positive profit / ROI stay green even in the warm theme */
body.theme-prophet .kpi--accent .kpi__value.is-positive,
body.theme-prophet .kpi__value.is-positive,
body.theme-prophet .card__stat-value.is-positive {
  color: var(--positive);
  text-shadow: 0 0 26px var(--positive-glow);
}

/* =====================================================
   UNIFIED PROPHET CARD — toggle + equity / performance
   ===================================================== */

/* cat-head with model toggle on the right */
.cat-head--toggle {
  align-items: center;
  flex-wrap: wrap;
}
.cat-head__lead {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

/* segmented model toggle (warm tactile pill) */
.model-toggle {
  display: inline-flex;
  padding: 4px;
  background: linear-gradient(180deg, var(--well) 0%, #0c0603 100%);
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 999px;
  box-shadow:
    inset 0 2px 6px rgba(0, 0, 0, 0.7),
    inset 0 -1px 0 rgba(255, 170, 90, 0.04);
}
.model-toggle button {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--cream-dim);
  padding: 9px 16px;
  border-radius: 999px;
  transition: color 180ms ease;
}
.model-toggle button:hover { color: var(--cream); }
.model-toggle button[aria-pressed="true"] {
  color: #1c0d05;
  background: linear-gradient(180deg, var(--spice-bright) 0%, var(--spice) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 224, 188, 0.7),
    0 5px 14px -4px rgba(255, 110, 30, 0.55);
}

/* variant visibility (driven by [data-model]) */
[data-model="flagship"] [data-variant="soccer"],
[data-model="soccer"] [data-variant="flagship"] { display: none; }

/* main pane header */
.model-pane__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.model-pane__kicker {
  font-size: 12px;
  color: var(--cream-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* performance side pane */
.perf-pane {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.perf__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.perf__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.perf__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 4px 10px 4px 9px;
  border: 1px solid var(--hair-2);
  border-radius: 999px;
}
.perf__badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--spice);
  box-shadow: 0 0 0 3px rgba(255, 110, 30, 0.18);
}

/* equity curve */
.equity {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.equity__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.equity__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.equity__sub {
  font-size: 11px;
  color: var(--cream-dim);
  letter-spacing: 0.04em;
}
.equity__chart {
  position: relative;
  background: linear-gradient(180deg, var(--well) 0%, #0a0503 100%);
  border: 1px solid var(--hair);
  border-radius: 14px;
  padding: 10px 8px 6px;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.45);
}
/* plot wrapper: overlay coords map 1:1 to the SVG viewBox box */
.equity__plot { position: relative; line-height: 0; }

/* LIVE TRACKER button — overlaid top-left of the graph */
.equity__live {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 12px 20px 12px 18px;
  border-radius: 999px;
  background: rgba(14, 8, 5, 0.74);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border: 1px solid var(--hair-2);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--cream);
  text-decoration: none;
  white-space: nowrap;
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}
.equity__live:hover {
  color: var(--gold-hi);
  border-color: rgba(255, 170, 90, 0.42);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.75);
}
.equity__live-dot {
  flex: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--positive);
  box-shadow: 0 0 8px var(--positive-glow);
  animation: equityLive 1.9s ease-out infinite;
}
/* "opens in a new tab" external-link glyph */
.equity__live-ext {
  display: block;
  margin-left: 1px;
  opacity: 0.7;
  transition: opacity 160ms ease, transform 160ms ease;
}
.equity__live:hover .equity__live-ext {
  opacity: 1;
  transform: translate(1px, -1px);
}
@keyframes equityLive {
  0%   { box-shadow: 0 0 8px var(--positive-glow), 0 0 0 0 rgba(58, 208, 127, 0.5); }
  70%  { box-shadow: 0 0 8px var(--positive-glow), 0 0 0 7px rgba(58, 208, 127, 0); }
  100% { box-shadow: 0 0 8px var(--positive-glow), 0 0 0 0 rgba(58, 208, 127, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .equity__live-dot { animation: none; }
}
.equity__chart svg {
  display: block;
  width: 100%;
  height: auto;
}
.equity__line {
  fill: none;
  stroke: var(--positive);
  stroke-width: 2;
  stroke-linejoin: round;
  stroke-linecap: round;
  filter: drop-shadow(0 2px 8px var(--positive-glow));
}
.equity__zero {
  stroke: var(--hair-2);
  stroke-width: 1;
  stroke-dasharray: 3 5;
}

/* secondary "every alert @ 1u" line — de-emphasised reference */
.equity__line2 {
  fill: none;
  stroke: var(--cream-dim);
  stroke-width: 1.5;
  stroke-dasharray: 4 4;
  stroke-linejoin: round;
  stroke-linecap: round;
  opacity: 0.5;
}

/* legend under the chart */
.equity__legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  margin-top: 10px;
  padding-left: 2px;
}
.equity__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream-dim);
}
.equity__legend-swatch {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--positive);
  box-shadow: 0 0 8px var(--positive-glow);
}
.equity__legend-swatch.is-all {
  background: transparent;
  border: 1.5px solid var(--cream-dim);
  box-shadow: none;
  opacity: 0.7;
}

/* ---- HTML overlays (crisp, undistorted by the stretched SVG) ---- */
/* resting end marker + label */
.equity__end {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--positive);
  box-shadow: 0 0 0 3px var(--well), 0 0 12px var(--positive-glow);
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: opacity 120ms ease;
}
.equity__end-label {
  position: absolute;
  transform: translate(-100%, -50%);
  padding-right: 9px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--positive);
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 120ms ease;
}
/* hover cursor: vertical guide + roaming marker */
.equity__guide {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--hair-2);
  transform: translateX(-0.5px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 120ms ease;
}
.equity__marker {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-hi);
  box-shadow: 0 0 0 3px var(--well), 0 0 14px rgba(255, 194, 75, 0.7);
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 120ms ease;
}
/* hover tooltip */
.equity__tip {
  position: absolute;
  transform: translate(-50%, calc(-100% - 14px));
  min-width: 132px;
  padding: 10px 12px;
  border-radius: 12px;
  line-height: 1.4;
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface-bot) 100%);
  border: 1px solid var(--hair-2);
  box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  z-index: 4;
  transition: opacity 120ms ease;
}
.equity__tip.is-below { transform: translate(-50%, 14px); }
.equity__tip-month {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.equity__tip-cum {
  margin-top: 5px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--gold-hi);
}
.equity__tip-cum.is-positive { color: var(--positive); }
.equity__tip-cum.is-negative { color: var(--negative); }
.equity__tip-delta {
  margin-top: 7px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--cream-dim);
}
.equity__tip-delta b { font-weight: 700; }
.equity__tip-delta .pos { color: var(--positive); }
.equity__tip-delta .neg { color: var(--negative); }
/* secondary line readout inside the tooltip */
.equity__tip-alt {
  margin-top: 9px;
  padding-top: 8px;
  border-top: 1px solid var(--hair);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cream-dim);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.equity__tip-alt-k { opacity: 0.78; }
.equity__tip-alt-v { color: var(--cream); }

/* hover state swap */
.equity__chart.is-hover .equity__end,
.equity__chart.is-hover .equity__end-label { opacity: 0; }
.equity__chart.is-hover .equity__guide,
.equity__chart.is-hover .equity__marker,
.equity__chart.is-hover .equity__tip { opacity: 1; }

/* performance summary */
.perf__summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.perf__stat {
  padding-top: 13px;
  border-top: 1px solid var(--hair);
}
.perf__stat-value {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--gold-hi);
}
.perf__stat-value.is-positive {
  color: var(--positive);
  text-shadow: 0 0 26px var(--positive-glow);
}
.perf__stat-cap {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 8px;
}

/* P-Value + EMDD metric tiles */
.perf__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.metric {
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface-bot) 100%);
  border: 1px solid var(--hair);
  box-shadow: inset 0 1px 0 rgba(255, 170, 90, 0.04);
}
.metric__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 9px;
  min-height: 32px;
}
.metric__name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.metric__tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--positive);
  border: 1px solid rgba(58, 208, 127, 0.32);
  background: rgba(58, 208, 127, 0.08);
  padding: 2px 6px;
  border-radius: 6px;
  white-space: nowrap;
}
.metric__value {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--gold-hi);
  font-variant-numeric: tabular-nums;
}
.metric__hint {
  font-size: 11px;
  color: var(--cream-dim);
  margin-top: 8px;
  line-height: 1.4;
  text-wrap: pretty;
}

@media (max-width: 640px) {
  .cat-head--toggle { gap: 16px; }
  .model-toggle { width: 100%; }
  .model-toggle button { flex: 1; text-align: center; }
}

/* =====================================================
   PROPHET BOARD — one merged card + simulation
   ===================================================== */
.prophet-board {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* merged card: identity → narrative split → performance */
.prophet-card { padding: 32px; }
.model-block { display: flex; flex-direction: column; }

.model-pane__id { flex: 1; min-width: 0; }
.model-block .model-pane__head { align-items: center; margin-bottom: 22px; }
.model-block .model-pane__head .perf__badge { align-self: center; flex-shrink: 0; }

/* How it works | What you get */
.pcard__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 48px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--hair);
}
.pcard__col h2 {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--cream);
}
.pcard__col p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--cream-dim);
  text-wrap: pretty;
}
.pcard__col ul {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--cream-dim);
}
.pcard__col ul li::marker { color: var(--accent); }

/* performance area sits full-width below the split */
.pcard__perf { display: flex; flex-direction: column; gap: 22px; }

/* bigger equity chart */
.equity--lg .equity__chart { padding: 14px 12px 8px; }

/* recent-performance windows */
.perf__windows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.win {
  padding: 12px 14px;
  border-radius: 13px;
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface-bot) 100%);
  border: 1px solid var(--hair);
  box-shadow: inset 0 1px 0 rgba(255, 170, 90, 0.04);
}
.win__label {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.win__profit {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-top: 9px;
  color: var(--gold-hi);
  font-variant-numeric: tabular-nums;
}
.win__profit.is-positive {
  color: var(--positive);
  text-shadow: 0 0 22px var(--positive-glow);
}
.win__roi {
  font-size: 12px;
  font-weight: 600;
  color: var(--cream-dim);
  margin-top: 5px;
  font-variant-numeric: tabular-nums;
}

/* 5-up summary */
.perf__summary--5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.perf__summary--5 .perf__stat-value { font-size: 21px; }

/* 6-up summary */
.perf__summary--6 {
  grid-template-columns: repeat(6, 1fr);
  gap: 9px;
}
.perf__summary--6 .perf__stat-value { font-size: 19px; }

/* =====================================================
   ADVANCED BETTING SIMULATION CARD
   ===================================================== */
.sim {
  padding: 32px;
}
.sim__head { max-width: 76ch; margin-bottom: 26px; }
.sim__head .eyebrow { color: var(--spice-bright); margin-bottom: 12px; }
.sim__head-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.sim__head-top .eyebrow { margin-bottom: 0; }
/* "updated monthly" flag pill */
.sim__flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
  padding: 5px 12px 5px 10px;
  border: 1px solid var(--hair-2);
  border-radius: 999px;
  white-space: nowrap;
}
.sim__flag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 194, 75, 0.15);
}
.sim__flag-date { color: var(--gold-hi); letter-spacing: 0.04em; }
.sim__title {
  margin: 0 0 12px;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--gold-hi);
}
.sim__lede {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--cream-dim);
  text-wrap: pretty;
}
.sim-pane {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 44px;
}
.sim__col-head {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--spice-bright);
}
.sim__row {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 13px 0;
  border-top: 1px solid var(--hair);
}
.sim__row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.sim__row-desc {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--cream-dim);
  opacity: 0.82;
  max-width: 48ch;
  text-wrap: pretty;
}
.sim__row-label {
  font-size: 13.5px;
  line-height: 1.35;
  color: var(--cream-dim);
  text-wrap: pretty;
}
.sim__row-val {
  flex-shrink: 0;
  min-width: 80px;
  text-align: center;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--cream);
  background: linear-gradient(180deg, var(--well) 0%, #0a0503 100%);
  border: 1px solid var(--hair-2);
  border-radius: 9px;
  padding: 7px 12px;
  font-variant-numeric: tabular-nums;
}
/* the two headline metrics the user cares about */
.sim__row--key .sim__row-label { color: var(--cream); font-weight: 600; }
.sim__row--key .sim__row-val {
  color: #1c0d05;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-hi) 100%);
  border-color: transparent;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 5px 14px -6px rgba(255, 184, 64, 0.55);
}
.sim__note {
  margin: 24px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--hair);
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--cream-dim);
  text-wrap: pretty;
}

@media (max-width: 760px) {
  .pcard__split { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 600px) {
  .perf__summary--5 { grid-template-columns: repeat(3, 1fr); }
  .perf__summary--6 { grid-template-columns: repeat(3, 1fr); }
  .sim-pane { grid-template-columns: 1fr; gap: 8px; }
  .sim__col + .sim__col { margin-top: 18px; }
}
@media (max-width: 400px) {
  .perf__windows { gap: 8px; }
  .win { padding: 10px 9px; }
  .win__profit { font-size: 16px; }
  .perf__summary { gap: 8px; }
  .metric__value { font-size: 21px; }
  .perf__summary--5 .perf__stat-value,
  .perf__summary--6 .perf__stat-value { font-size: 18px; }
}

/* PROPHET: entire background is a flat warm near-black (#150d08).
   prophet.css only loads on the warm page. */
html { background-color: #150d08; }
body.theme-prophet { background: #150d08; }
