/* copy-review.css — DEV ONLY. DELETE THE <link> BEFORE LAUNCH.
 *
 * Outlines every element still carrying placeholder copy, so nobody mistakes
 * a draft line for Jordan's final copy during review. One <link> to remove.
 */
[data-ph] {
  position: relative;
  outline: 1px dashed rgba(0, 235, 199, 0.45);
  outline-offset: 6px;
}
[data-ph]::after {
  content: "draft copy";
  position: absolute;
  top: -8px; left: -6px;
  padding: 1px 6px;
  border-radius: 3px;
  background: var(--c-mint);
  color: #04231E;
  font-family: var(--f-body);
  font-size: 9px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 2;
}
