/* ---- rn-briefing v2 (2026-09-20): The Regulatory Briefing sign-up layer.
   A modal on desktop, a slim slide-up bar on phones (never a full-screen overlay there: Google
   penalises those on visits from search), plus the in-place states for every newsletter form.
   Built by assets/briefing.js; nothing here renders until that script adds the markup. ---- */

/* ---- The pulse surface (owner direction 2026-09-20): the newsletter, and only the newsletter, wears
   the LinkedIn banner's look: near-black, a faint monitor grid, a glowing green heartbeat trace and
   "THE PULSE OF REGULATION." Everything else on the site stays white. One class, .rnb-pulse, carries
   the ground; .rnb-trace is the heartbeat (markup from pulseTrace() in briefing.js, or inline). ---- */
.rnb-pulse {
  --pulse: #2fdc80;
  --pulse-deep: #17b866;
  position: relative; isolation: isolate; overflow: hidden;
  color: #fff;
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(47, 220, 128, 0.10), rgba(47, 220, 128, 0) 60%),
    linear-gradient(180deg, #14171b 0%, #0b0d10 100%);
}
.rnb-pulse::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(120% 100% at 50% 0%, #000 30%, transparent 85%);
  mask-image: radial-gradient(120% 100% at 50% 0%, #000 30%, transparent 85%);
}
.rnb-trace { position: absolute; left: 0; right: 0; width: 100%; height: 96px; pointer-events: none; overflow: visible; z-index: -1; }
.rnb-trace path { fill: none; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.rnb-trace .t-base { stroke: var(--pulse); stroke-width: 2; opacity: 0.34; }
.rnb-trace .t-run {
  stroke: #b9ffd9; stroke-width: 2.4;
  stroke-dasharray: 9 91; stroke-dashoffset: 100;
  filter: drop-shadow(0 0 5px rgba(47, 220, 128, 0.95)) drop-shadow(0 0 14px rgba(47, 220, 128, 0.6));
  animation: rnb-run 3.6s cubic-bezier(0.35, 0, 0.55, 1) infinite;
}
.rnb-trace .t-glow { stroke: var(--pulse); stroke-width: 2; opacity: 0.9; filter: drop-shadow(0 0 6px rgba(47, 220, 128, 0.85)); stroke-dasharray: 100; stroke-dashoffset: 0; }
@keyframes rnb-run { 0% { stroke-dashoffset: 100; } 70%, 100% { stroke-dashoffset: -9; } }
.rnb-beat {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: #eafff3;
  box-shadow: 0 0 0 4px rgba(47, 220, 128, 0.25), 0 0 18px 6px rgba(47, 220, 128, 0.75);
  animation: rnb-beat 1.8s ease-in-out infinite;
}
@keyframes rnb-beat { 0%, 100% { transform: scale(0.85); opacity: 0.85; } 40% { transform: scale(1.25); opacity: 1; } }

.rnb-scrim {
  position: fixed; inset: 0; z-index: 2147483000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(6, 8, 10, 0.72);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  opacity: 0; transition: opacity 0.28s ease;
}
.rnb-scrim.is-in { opacity: 1; }

.rnb-modal {
  width: 100%; max-width: 860px; max-height: calc(100vh - 48px);
  overflow: hidden auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(47, 220, 128, 0.08), 0 0 80px -20px rgba(47, 220, 128, 0.35);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.rnb-scrim.is-in .rnb-modal { transform: none; }

/* The masthead of the card: the banner, in small. */
.rnb-head { position: relative; padding: 34px 32px 26px; text-align: center; }
.rnb-head .rnb-trace { top: 18px; }
.rnb-head .rnb-beat { top: 60px; right: 11.5%; }
.rnb-logo { position: relative; display: block; width: 236px; max-width: 62%; height: auto; margin: 0 auto; }
.rnb-tagline { position: relative; margin: 16px 0 0; font-size: 13px; font-weight: 800; letter-spacing: 0.3em; text-transform: uppercase; color: #fff; }
.rnb-tagline i { font-style: normal; color: var(--pulse); }
.rnb-tagsub { position: relative; margin: 7px 0 0; font-family: var(--serif, "DM Serif Display", Georgia, serif); font-style: italic; font-size: 16px; color: #d9dee5; }

.rnb-body {
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.rnb-main { padding: 30px 34px 28px; }
.rnb-gift {
  display: flex; flex-direction: column; gap: 16px;
  padding: 30px 30px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}
.rnb-gift-eyebrow, .rnb-eyebrow {
  margin: 0;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--pulse);
}
.rnb-gift-title {
  margin: 0;
  font-family: var(--serif, "DM Serif Display", Georgia, serif); font-weight: 400;
  font-size: 23px; line-height: 1.16; color: #fff;
}
.rnb-gift-sub { margin: 0; font-size: 13.5px; line-height: 1.55; color: #aeb6c2; }
.rnb-dates { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.rnb-dates li {
  display: grid; grid-template-columns: 44px 1fr; align-items: center; gap: 12px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
}
.rnb-date {
  display: grid; justify-items: center; gap: 1px;
  padding: 5px 0 6px;
  background: #0b0d10; border: 1px solid rgba(47, 220, 128, 0.35); border-radius: 6px;
}
.rnb-date b { font-size: 9px; font-weight: 700; letter-spacing: 0.12em; color: var(--pulse, #2fdc80); }
.rnb-date span { font-family: var(--serif, Georgia, serif); font-size: 19px; line-height: 1; color: #fff; }
.rnb-dates p { margin: 0; font-size: 12.5px; line-height: 1.4; color: #e6e9ee; }
.rnb-dates p small { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #8f99a8; }

.rnb-title {
  margin: 10px 0 0;
  font-family: var(--serif, "DM Serif Display", Georgia, serif); font-weight: 400;
  font-size: 36px; line-height: 1.06; letter-spacing: -0.005em;
  color: #fff;
}
.rnb-title em { font-style: italic; color: var(--pulse); }
.rnb-sub { margin: 14px 0 0; font-size: 15px; line-height: 1.6; color: #c3cad4; }
.rnb-points { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 8px; }
.rnb-points li { position: relative; padding-left: 22px; font-size: 14px; line-height: 1.5; color: #e6e9ee; }
.rnb-points li::before {
  content: ""; position: absolute; left: 2px; top: 7px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--pulse); box-shadow: 0 0 10px rgba(47, 220, 128, 0.8);
}

/* The field. The ring sits on the container; the input itself never draws one. */
.rnb-form { margin: 22px 0 0; }
.rnb-field {
  display: flex; align-items: stretch;
  border: 1px solid var(--border-strong, #cbd5e0); border-radius: 4px;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.rnb-field:focus-within { border-color: var(--accent, #106d37); box-shadow: 0 0 0 3px rgba(16, 109, 55, 0.16); }
.rnb-field input[type="email"] {
  flex: 1 1 auto; min-width: 0;
  padding: 13px 14px;
  border: 0; outline: none; background: transparent;
  font: inherit; font-size: 16px; color: var(--text, #1a202c);
}
.rnb-field input[type="email"]::placeholder { color: var(--text-light, #687489); }
.rnb-field button {
  flex: 0 0 auto;
  margin: 3px; padding: 0 20px;
  border: 0; border-radius: 3px;
  background: var(--accent, #106d37); color: #fff;
  font: inherit; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: background 0.15s ease;
}
.rnb-field button:hover { background: var(--accent-hover, #0d592d); }
.rnb-field button:focus-visible { outline: 2px solid var(--ink-deep, #23262b); outline-offset: 2px; }
.rnb-field button[disabled] { opacity: 0.65; cursor: wait; }
/* On a pulse surface the field is glass and the button is the light. */
.rnb-pulse .rnb-field {
  border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.rnb-pulse .rnb-field:focus-within { border-color: var(--pulse); box-shadow: 0 0 0 3px rgba(47, 220, 128, 0.28), 0 0 24px -6px rgba(47, 220, 128, 0.6); }
.rnb-pulse .rnb-field input[type="email"] { color: #fff; padding: 15px 16px; caret-color: var(--pulse); }
.rnb-pulse .rnb-field input[type="email"]:focus, .rnb-pulse .rnb-field input[type="email"]:focus-visible { outline: none; box-shadow: none; }
.rnb-pulse .rnb-field input[type="email"]::placeholder { color: #8f99a8; }
.rnb-pulse .rnb-field input[type="email"]:-webkit-autofill { -webkit-box-shadow: 0 0 0 40px #171b20 inset; -webkit-text-fill-color: #fff; }
.rnb-pulse .rnb-field button {
  position: relative; overflow: hidden;
  margin: 4px; padding: 0 22px; border-radius: 7px;
  background: linear-gradient(180deg, #4df09a 0%, var(--pulse-deep) 100%);
  color: #04130a; font-weight: 800; letter-spacing: 0.01em; white-space: nowrap;
  box-shadow: 0 0 0 1px rgba(47, 220, 128, 0.5), 0 8px 24px -8px rgba(47, 220, 128, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.rnb-pulse .rnb-field button::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -70%; width: 45%;
  background: linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.55) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-18deg); transition: left 0.6s ease;
}
.rnb-pulse .rnb-field button:hover { background: linear-gradient(180deg, #5cf5a6 0%, #1cc671 100%); filter: none; transform: translateY(-1px); box-shadow: 0 0 0 1px rgba(47, 220, 128, 0.7), 0 12px 30px -8px rgba(47, 220, 128, 0.95), inset 0 1px 0 rgba(255, 255, 255, 0.5); }
.rnb-pulse .rnb-field button:hover::after { left: 125%; }
.rnb-pulse .rnb-field button:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.rnb-pulse .rnb-msg, .rnb-pulse .rnb-inline-msg { color: #ffb4a8; }
.rnb-pulse .rnb-fine { color: #8f99a8; }
.rnb-pulse .rnb-fine a:hover { color: #fff; }
.rnb-pulse .rnb-no { color: #8f99a8; }
.rnb-pulse .rnb-no:hover { color: #fff; }
.rnb-pulse .rnb-close { color: #aeb6c2; z-index: 2; }
.rnb-pulse .rnb-close:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.rnb-pulse .rnb-close:focus-visible, .rnb-pulse .rnb-no:focus-visible { outline-color: var(--pulse); }
.rnb-pulse .rnb-done { background: rgba(47, 220, 128, 0.08); border-left-color: var(--pulse); border-radius: 0 8px 8px 0; }
.rnb-pulse .rnb-done strong { color: #fff; }
.rnb-pulse .rnb-done span { color: #c3cad4; }

.rnb-msg { min-height: 18px; margin: 8px 0 0; font-size: 13px; line-height: 1.4; color: #b42318; }
.rnb-fine { margin: 6px 0 0; font-size: 12px; line-height: 1.5; color: var(--text-light, #687489); }
.rnb-fine a { color: inherit; text-decoration: underline; }
.rnb-no {
  display: inline-block; margin: 14px 0 0; padding: 4px 0;
  border: 0; background: none;
  font: inherit; font-size: 13px; color: var(--text-light, #687489);
  text-decoration: underline; cursor: pointer;
}
.rnb-no:hover { color: var(--text, #1a202c); }

.rnb-close {
  position: absolute; top: 10px; right: 10px;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 0; border-radius: 50%; background: transparent;
  color: var(--text-light, #687489); cursor: pointer;
}
.rnb-close:hover { background: var(--bg-soft, #f7f9fc); color: var(--text, #1a202c); }
.rnb-close:focus-visible, .rnb-no:focus-visible { outline: 2px solid var(--accent, #106d37); outline-offset: 2px; }

/* Success, shared by the modal, the bar and every in-page form. */
.rnb-done { margin: 22px 0 0; padding: 16px 18px; border-left: 3px solid #0d9f4a; background: var(--bg-soft, #f7f9fc); }
.rnb-done strong { display: block; font-family: var(--serif, Georgia, serif); font-weight: 400; font-size: 21px; line-height: 1.2; color: var(--ink-deep, #23262b); }
.rnb-done span { display: block; margin-top: 5px; font-size: 14px; line-height: 1.55; color: var(--text-muted, #4a5568); }

/* ---- Phones and small tablets: a bar at the foot, not a modal. Same pulse surface. ---- */
.rnb-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 2147483000;
  padding: 22px 16px calc(14px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(47, 220, 128, 0.35);
  box-shadow: 0 -18px 50px rgba(0, 0, 0, 0.45), 0 -1px 30px -6px rgba(47, 220, 128, 0.45);
  transform: translateY(105%); transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.rnb-bar.is-in { transform: none; }
.rnb-bar .rnb-trace { top: 0; height: 46px; opacity: 0.55; z-index: -1; }
.rnb-bar-head { position: relative; display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.rnb-bar-kicker { margin: 0 0 6px; font-size: 10.5px; font-weight: 800; letter-spacing: 0.26em; text-transform: uppercase; color: #fff; }
.rnb-bar-kicker i { font-style: normal; color: var(--pulse); }
.rnb-bar-title { margin: 0; font-family: var(--serif, Georgia, serif); font-weight: 400; font-size: 20px; line-height: 1.18; color: #fff; }
.rnb-bar-title em { font-style: italic; color: var(--pulse); }
.rnb-bar-sub { margin: 5px 0 0; font-size: 13px; line-height: 1.45; color: #aeb6c2; }
.rnb-bar .rnb-close { position: static; flex: 0 0 auto; width: 44px; height: 44px; margin: -10px -10px 0 0; }
.rnb-bar .rnb-form { position: relative; margin-top: 12px; }
.rnb-bar .rnb-msg { min-height: 0; }
.rnb-bar .rnb-done { margin-top: 12px; }

@media (max-width: 820px) {
  .rnb-modal { max-width: 520px; }
  .rnb-body { grid-template-columns: 1fr; }
  .rnb-gift { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .rnb-scrim, .rnb-modal, .rnb-bar { transition: none; }
  .rnb-trace .t-run, .rnb-beat { animation: none; }
  .rnb-trace .t-run { stroke-dashoffset: 40; }
}
@media print { .rnb-scrim, .rnb-bar { display: none !important; } }

/* In-page newsletter forms (front-page band, briefing page) once they have been sent. */
form[name="newsletter"].rnb-sent { display: none; }
.rnb-inline-msg { margin: 10px 0 0; font-size: 14px; color: #b42318; }

/* ---- The newsletter's own pages: /briefing and its three small outcomes. ---- */
.bp-hero { padding: clamp(56px, 7vw, 96px) 0 clamp(48px, 6vw, 84px); }
.bp-hero .rnb-trace { top: 22px; height: 110px; opacity: 0.8; }
.bp-kicker { margin: 0 0 18px; font-size: 13px; font-weight: 800; letter-spacing: 0.3em; text-transform: uppercase; color: #fff; }
.bp-kicker i { font-style: normal; color: var(--pulse, #2fdc80); }
.bp-hero .container { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.bp-eyebrow { margin: 0; font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #2fdc80; }
.bp-hero h1 { margin: 14px 0 0; font-family: var(--serif, Georgia, serif); font-weight: 400; font-size: clamp(38px, 5.2vw, 62px); line-height: 1.04; letter-spacing: -0.008em; color: #fff; }
.bp-hero h1 em { font-style: italic; color: var(--pulse, #2fdc80); }
.bp-lead { margin: 20px 0 0; max-width: 34em; font-size: clamp(17px, 1.5vw, 19px); line-height: 1.6; color: #d6dae1; }
.bp-hero .rnb-field { margin-top: 28px; max-width: 500px; }
.bp-hero .rnb-done { max-width: 500px; }
.bp-fine { margin: 12px 0 0; font-size: 13px; line-height: 1.55; color: #a9b1bd; }
.bp-fine a { color: inherit; text-decoration: underline; }

/* The issue, drawn: a miniature of the real email's structure. */
.bp-issue { background: #fff; border-radius: 10px; box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55), 0 0 70px -20px rgba(47, 220, 128, 0.4); overflow: hidden; color: var(--text, #1a202c); }
.bp-issue-top { background: var(--ink-deep, #23262b); padding: 9px 20px; display: flex; justify-content: space-between; gap: 12px; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: #c9ced6; }
.bp-issue-top i { font-family: var(--serif, Georgia, serif); font-size: 12px; letter-spacing: 0; text-transform: none; }
.bp-issue-body { padding: 20px 22px 22px; }
.bp-issue h2 { margin: 6px 0 0; font-family: var(--serif, Georgia, serif); font-weight: 400; font-size: 23px; line-height: 1.18; color: var(--ink-deep, #23262b); }
.bp-issue p { margin: 8px 0 0; font-size: 13.5px; line-height: 1.55; color: var(--text-muted, #4a5568); }
.bp-tag { margin: 0; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent, #106d37); }
.bp-issue-rule { margin: 16px 0 0; padding-top: 9px; border-top: 2px solid var(--ink, #33373f); font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink, #33373f); }
.bp-issue ul { list-style: none; margin: 10px 0 0; padding: 0; display: grid; gap: 9px; }
.bp-issue li { display: grid; grid-template-columns: 44px 1fr; gap: 11px; align-items: center; font-size: 13px; line-height: 1.4; color: var(--text, #1a202c); }
.bp-issue li small { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light, #687489); }
.bp-issue .rnb-date { border: 1px solid var(--border, #e2e8f0); background: var(--bg-soft, #f7f9fc); }

.bp-section { padding: clamp(44px, 6vw, 80px) 0; }
.bp-section + .bp-section { border-top: 1px solid var(--border, #e2e8f0); }
.bp-section h2 { margin: 0; max-width: 20em; font-family: var(--serif, Georgia, serif); font-weight: 400; font-size: clamp(28px, 3.2vw, 40px); line-height: 1.12; color: var(--ink-deep, #23262b); }
.bp-section h2 em { font-style: italic; color: var(--accent, #106d37); }
.bp-cols { margin-top: 30px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(22px, 3vw, 40px); }
.bp-cols > div { padding-top: 16px; border-top: 2px solid var(--ink, #33373f); }
.bp-cols h3 { margin: 0; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent, #106d37); }
.bp-cols p { margin: 10px 0 0; font-size: 16px; line-height: 1.6; color: var(--text-muted, #4a5568); }
.bp-gift { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 4vw, 64px); align-items: center; }
.bp-gift p { margin: 16px 0 0; font-size: 17px; line-height: 1.65; color: var(--text-muted, #4a5568); }
.bp-gift .rnb-dates li { background: var(--bg-soft, #f7f9fc); border-color: var(--border, #e2e8f0); }
.bp-gift .rnb-dates p { margin: 0; font-size: 14px; color: var(--text, #1a202c); }
.bp-gift .rnb-dates p small { color: var(--text-light, #687489); }
.bp-gift .rnb-date { border: 1px solid var(--border, #e2e8f0); }
.bp-promise { list-style: none; margin: 28px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 40px; }
.bp-promise li { position: relative; padding-left: 22px; font-size: 16px; line-height: 1.6; color: var(--text, #1a202c); }
.bp-promise li::before { content: ""; position: absolute; left: 2px; top: 10px; width: 8px; height: 8px; border-radius: 50%; background: #0d9f4a; }
.bp-cta { text-align: center; }
.bp-cta h2 { margin-left: auto; margin-right: auto; }
.bp-cta .rnb-field { margin: 26px auto 0; max-width: 480px; }
.bp-cta .rnb-done { margin-left: auto; margin-right: auto; max-width: 480px; text-align: left; }
.bp-cta .bp-fine { color: var(--text-light, #687489); }

.bp-note { padding: clamp(56px, 9vw, 120px) 0; }
.bp-note .container { max-width: 720px; }
.bp-note h1 { margin: 12px 0 0; font-family: var(--serif, Georgia, serif); font-weight: 400; font-size: clamp(34px, 4.4vw, 50px); line-height: 1.08; color: var(--ink-deep, #23262b); }
.bp-note .bp-eyebrow { color: var(--accent, #106d37); }
.bp-note p { margin: 18px 0 0; font-size: 18px; line-height: 1.65; color: var(--text-muted, #4a5568); }
.bp-btn { display: inline-block; margin-top: 26px; padding: 14px 26px; border-radius: 4px; background: var(--accent, #106d37); color: #fff !important; font-size: 16px; font-weight: 700; text-decoration: none; }
.bp-btn:hover { background: var(--accent-hover, #0d592d); }
.bp-btn:focus-visible { outline: 2px solid var(--ink-deep, #23262b); outline-offset: 3px; }
.bp-links { margin-top: 30px; font-size: 15px; }
.bp-links a { color: var(--accent, #106d37); }

@media (max-width: 860px) {
  .bp-hero .container, .bp-gift { grid-template-columns: 1fr; }
  .bp-cols { grid-template-columns: 1fr; gap: 24px; }
  .bp-promise { grid-template-columns: 1fr; }
  .bp-issue { max-width: 480px; }
}

/* bp-issue date fix (2026-09-20): the light issue-preview card keeps dark numerals on its light chips. */
.bp-issue .rnb-date { background: var(--bg-soft, #f7f9fc); border: 1px solid var(--border, #e2e8f0); }
.bp-issue .rnb-date b { color: var(--accent, #106d37); }
.bp-issue .rnb-date span { color: var(--ink-deep, #23262b); }
