/* prayer-styles.css — structural + themed styles for "Let's Pray".
   Everything is driven by CSS variables set per-theme on .lp-root. */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }
/* offset anchor jumps so the sticky nav doesn't cover section headings */
[id="how"], [id="paths"], [id="wall"], [id="stories"], [id="give"], [id="top"] { scroll-margin-top: 88px; }

.lp-root {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.lp-root ::selection { background: var(--accent-soft); }

.lp-container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 32px; }

/* ---------- buttons ---------- */
.lp-btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.lp-btn:hover { transform: translateY(-2px); }
.lp-btn:active { transform: translateY(0); }
.lp-btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 10px 26px -12px var(--glow);
}
.lp-btn-primary:hover { box-shadow: 0 16px 34px -10px var(--glow); }
.lp-btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.lp-btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.lp-btn-text { background: transparent; color: var(--ink); padding: 12px 12px; }
.lp-btn-text:hover { color: var(--accent); }
.lp-btn-sm { padding: 9px 18px; font-size: 14px; }
.lp-btn-lg { padding: 15px 28px; font-size: 16px; }
.lp-btn-block { width: 100%; justify-content: center; }

/* ---------- logo ---------- */
.lp-logo {
  display: inline-flex; align-items: center; gap: 0;
  font-size: 0; letter-spacing: 0;
  text-decoration: none; white-space: nowrap; flex: none;
}
.lp-logo-mark {
  width: 122px; height: 34px;
  background: url("logo-full.png") left center / contain no-repeat;
  flex: none;
}
.lp-logo .ad-tag { margin-left: 10px; }

/* ---------- nav ---------- */
.lp-nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.lp-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.lp-nav-links { display: flex; gap: 28px; }
.lp-nav-links a {
  color: var(--muted); text-decoration: none; font-weight: 600; font-size: 15px;
  white-space: nowrap;
  transition: color .2s ease;
}
.lp-nav-links a:hover { color: var(--ink); }
.lp-nav-cta { display: flex; align-items: center; gap: 6px; }

/* ---------- hero ---------- */
.lp-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 96px;
  background:
    radial-gradient(80% 60% at 78% 6%, var(--accent-soft), transparent 60%),
    radial-gradient(70% 50% at 12% 0%, var(--glow), transparent 55%);
}
.lp-hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: var(--hero-scrim);
}
.lp-hero-inner { position: relative; z-index: 2; }

.lp-root[data-layout="centered"] .lp-hero-inner {
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.lp-root[data-layout="centered"] .lp-hero-main { max-width: 860px; }
.lp-root[data-layout="centered"] .lp-cta-row,
.lp-root[data-layout="centered"] .lp-counters { justify-content: center; }
.lp-root[data-layout="centered"] .lp-quote { margin: 40px auto 0; }

.lp-root[data-layout="split"] .lp-hero-inner {
  display: grid; grid-template-columns: 1.3fr .9fr; gap: 56px; align-items: center;
}

.lp-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 7px 15px; border-radius: 999px;
  margin-bottom: 26px;
}
.lp-eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.lp-eyebrow { white-space: nowrap; }

.lp-h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -.02em;
  margin: 0 0 24px;
}
.lp-h1-line { display: block; }
.lp-root[data-theme="daybreak"] .lp-h1 { font-weight: 400; letter-spacing: -.01em; }
.lp-root[data-theme="daybreak"] .lp-h1-line:last-child { font-style: italic; color: var(--accent); }
.lp-root[data-theme="stillness"] .lp-h1-line:last-child { color: var(--accent); }
.lp-root[data-theme="together"] .lp-h1-line:last-child { color: var(--accent2); }

.lp-lead {
  font-size: 20px; line-height: 1.6; color: var(--muted);
  max-width: 620px; margin: 0 0 34px;
  text-wrap: pretty;
}
.lp-root[data-layout="centered"] .lp-lead { margin-left: auto; margin-right: auto; }

.lp-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.lp-cta-row.is-center { justify-content: center; }

/* ---------- counters ---------- */
.lp-counters {
  display: flex; align-items: center; gap: 30px;
  margin-top: 48px; flex-wrap: wrap;
}
.lp-counter-div { width: 1px; height: 42px; background: var(--line); }
.lp-counter-num {
  font-family: var(--font-head);
  font-weight: 700; font-size: 38px; line-height: 1; letter-spacing: -.02em;
  color: var(--ink);
}
.lp-counter-num.is-accent { color: var(--accent); }
.lp-counter-num.is-live { display: inline-flex; align-items: center; gap: 9px; color: var(--accent2); }
.lp-counter-num.is-live .lp-counter { display: inline; }
.lp-counter-num.is-live .lp-counter-num { font-size: 38px; color: var(--accent2); }
.lp-counter-num.is-live .lp-counter-label { display: none; }
.lp-counter-label {
  margin-top: 8px; font-size: 13px; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--muted);
}

.lp-live-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent2);
  box-shadow: 0 0 0 0 var(--accent2);
  animation: lp-ping 1.8s ease-out infinite;
  flex: none;
}
@keyframes lp-ping {
  0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent2) 60%, transparent); }
  70%, 100% { box-shadow: 0 0 0 9px transparent; }
}

/* ---------- quote of the day ---------- */
.lp-quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px 30px;
  max-width: 460px;
  box-shadow: 0 24px 60px -34px var(--glow);
  text-align: left;
}
.lp-quote-label {
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.lp-quote-text {
  font-family: var(--font-head); font-size: 22px; line-height: 1.45;
  margin: 0 0 14px; color: var(--ink); text-wrap: pretty;
}
.lp-root[data-theme="daybreak"] .lp-quote-text { font-style: italic; }
.lp-quote-ref { font-weight: 700; font-size: 14px; color: var(--muted); }

/* ---------- rising prayer stream ---------- */
.lp-stream { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.lp-stream-haze {
  position: absolute; inset: 0;
  background: radial-gradient(60% 40% at 50% 50%, var(--accent-soft), transparent 70%);
  opacity: .35;
}
.lp-pill {
  position: absolute; bottom: 2%;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  background: var(--pill-bg);
  color: var(--pill-ink);
  border: 1px solid var(--pill-border);
  font-size: 14px; font-weight: 600; white-space: nowrap;
  backdrop-filter: blur(4px);
  animation-name: lp-rise; animation-timing-function: linear; animation-fill-mode: forwards;
  will-change: transform, opacity;
}
.lp-pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none; }
.lp-pill--sm { opacity: .55; transform: scale(.86); font-size: 13px; }
.lp-pill--md { opacity: .7; }
.lp-pill--lg { opacity: .82; font-size: 15px; }
@keyframes lp-rise {
  0% { transform: translateY(30px) translateX(0) scale(.96); opacity: 0; }
  10% { opacity: var(--o, .7); }
  86% { opacity: var(--o, .7); }
  100% { transform: translateY(-78vh) translateX(var(--drift)) scale(1); opacity: 0; }
}
.lp-pill--sm { --o: .4; }
.lp-pill--md { --o: .54; }
.lp-pill--lg { --o: .64; }

/* ---------- faith / who we are band ---------- */
.lp-faith {
  padding: 92px 0;
  background:
    radial-gradient(60% 120% at 50% 0%, var(--accent-soft), transparent 62%),
    var(--bg);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.lp-faith-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.lp-kicker.is-center-k { justify-content: center; }
.lp-faith-line {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(26px, 3.2vw, 40px); line-height: 1.18; letter-spacing: -.02em;
  margin: 0 0 18px; text-wrap: balance;
}
.lp-root[data-theme="daybreak"] .lp-faith-line { font-weight: 400; }
.lp-faith-sub { font-size: 19px; color: var(--muted); margin: 0 auto 30px; max-width: 60ch; text-wrap: pretty; }
.lp-faith-verse {
  display: inline-flex; flex-direction: column; gap: 7px; align-items: center;
  padding-top: 26px; border-top: 1px solid var(--line);
}
.lp-faith-verse span { font-family: var(--font-head); font-style: italic; font-size: 20px; line-height: 1.45; color: var(--ink); max-width: 46ch; text-wrap: pretty; }
.lp-faith-verse em { font-style: normal; font-weight: 700; font-size: 14px; color: var(--accent); white-space: nowrap; }

/* ---------- generic section ---------- */
.lp-section { padding: 104px 0; position: relative; }
.lp-section--alt { background: var(--bg2); }
.lp-head { max-width: 720px; margin-bottom: 56px; }
.lp-head.is-center { margin-left: auto; margin-right: auto; text-align: center; }
.lp-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px; white-space: nowrap;
}
.lp-h2 {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(30px, 3.6vw, 46px); line-height: 1.1; letter-spacing: -.02em;
  margin: 0;
}
.lp-root[data-theme="daybreak"] .lp-h2 { font-weight: 400; }
.lp-sub { font-size: 19px; color: var(--muted); margin: 18px 0 0; text-wrap: pretty; }

/* ---------- steps ---------- */
.lp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.lp-step {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 36px 30px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.lp-step:hover { transform: translateY(-4px); box-shadow: 0 28px 60px -34px var(--glow); }
.lp-step-num {
  font-family: var(--font-head); font-weight: 700; font-size: 17px;
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 22px;
  color: var(--accent); background: var(--accent-soft);
}
.lp-step-t { font-family: var(--font-head); font-size: 23px; margin: 0 0 10px; font-weight: 700; }
.lp-root[data-theme="daybreak"] .lp-step-t { font-weight: 400; }
.lp-step-d { color: var(--muted); margin: 0; font-size: 16px; }

/* ---------- two paths ---------- */
.lp-paths { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.lp-path-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px); padding: 42px 40px;
  display: flex; flex-direction: column;
}
.lp-path-card.is-warrior {
  background: var(--surface2);
  border-color: color-mix(in srgb, var(--accent) 26%, var(--line));
}
.lp-path-tag {
  align-self: flex-start;
  font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-soft);
  padding: 6px 13px; border-radius: 999px; margin-bottom: 20px;
}
.lp-path-t { font-family: var(--font-head); font-size: 30px; margin: 0 0 12px; font-weight: 700; }
.lp-root[data-theme="daybreak"] .lp-path-t { font-weight: 400; }
.lp-path-d { color: var(--muted); margin: 0 0 22px; }
.lp-path-list { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 13px; }
.lp-path-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 16px; }
.lp-check {
  width: 21px; height: 21px; border-radius: 50%; flex: none;
  background: var(--accent); position: relative;
}
.lp-check::after {
  content: ""; position: absolute; left: 7px; top: 5px;
  width: 5px; height: 9px; border: solid var(--accent-ink); border-width: 0 2px 2px 0;
  transform: rotate(42deg);
}
.lp-path-cta { display: flex; gap: 12px; align-items: center; margin-top: auto; flex-wrap: wrap; }

/* ---------- live wall ---------- */
.lp-wall-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: start; }
.lp-wall-intro { position: sticky; top: 100px; }
.lp-wall-feed { display: grid; gap: 14px; }
.lp-wall-empty {
  background: var(--surface); border: 1px dashed var(--line);
  border-radius: var(--radius); padding: 40px 32px; text-align: center;
}
.lp-wall-empty-t { font-family: var(--font-head); font-size: 22px; margin: 0 0 8px; color: var(--ink); }
.lp-wall-empty-d { color: var(--muted); margin: 0 0 22px; font-size: 16px; text-wrap: pretty; }
.lp-wall-item {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 26px;
  opacity: 1;
}
@media (prefers-reduced-motion: no-preference) {
  .lp-wall-item { animation: lp-fade-up .6s ease forwards; }
}
@keyframes lp-fade-up { from { transform: translateY(14px); } to { transform: none; } }
.lp-wall-text { font-family: var(--font-head); font-size: 20px; margin: 0 0 12px; text-wrap: pretty; }
.lp-root[data-theme="daybreak"] .lp-wall-text { font-style: italic; }
.lp-wall-meta { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--muted); font-weight: 600; flex-wrap: nowrap; }
.lp-wall-meta > span { white-space: nowrap; }
.lp-wall-where { color: var(--ink); }
.lp-wall-dot { opacity: .5; }
.lp-wall-praying {
  margin-left: auto; display: inline-flex; align-items: center; gap: 7px;
  color: var(--accent); background: var(--accent-soft);
  padding: 5px 12px; border-radius: 999px; font-size: 13px;
}
.lp-hands { width: 13px; height: 13px; border-radius: 50% 50% 50% 3px; background: var(--accent); transform: rotate(-8deg); }

/* ---------- donate ---------- */
.lp-donate { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.lp-donate-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px); padding: 34px;
  box-shadow: 0 30px 70px -40px var(--glow);
}
.lp-amts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 11px; margin-bottom: 18px; }
.lp-amt {
  font-family: var(--font-head); font-weight: 700; font-size: 18px;
  padding: 16px 0; border-radius: var(--radius-sm);
  background: var(--surface2); border: 1.5px solid var(--line); color: var(--ink);
  cursor: pointer; transition: all .18s ease;
}
.lp-amt:hover { border-color: var(--accent); }
.lp-amt.is-on { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.lp-donate-note { font-size: 13px; color: var(--muted); margin: 16px 0 0; text-align: center; }

/* ---- giving: coming soon ---- */
.lp-give-pray { font-size: 16px; font-weight: 600; color: var(--accent); margin: 20px 0 0; }
.lp-donate-card.is-soon { position: relative; }
.lp-soon-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent2); background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent2) 34%, transparent);
  padding: 6px 13px; border-radius: 999px; margin-bottom: 22px; white-space: nowrap;
}
.lp-soon-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent2); }
.lp-amt.is-disabled {
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 18px;
  padding: 16px 0; border-radius: var(--radius-sm);
  background: var(--surface2); border: 1.5px solid var(--line); color: var(--muted);
  opacity: .5;
}
.lp-donate-card.is-soon .lp-btn[disabled] { opacity: .55; cursor: not-allowed; }
.lp-donate-card.is-soon .lp-btn[disabled]:hover { transform: none; box-shadow: 0 10px 26px -12px var(--glow); }

.lp-notify { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); }
.lp-notify-label { display: block; font-size: 14px; font-weight: 600; color: var(--muted); margin-bottom: 11px; }
.lp-notify-row { display: flex; gap: 10px; }
.lp-notify-input {
  flex: 1; min-width: 0; font-family: var(--font-body); font-size: 15px; color: var(--ink);
  background: var(--surface2); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 14px; transition: border-color .18s ease, box-shadow .18s ease;
}
.lp-notify-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.lp-notify-row .lp-btn { flex: none; }
.lp-notify-row .lp-btn[disabled] { opacity: .5; cursor: not-allowed; }
.lp-notify-row .lp-btn[disabled]:hover { transform: none; }
.lp-notify-done {
  display: flex; align-items: center; gap: 11px; margin-top: 22px; padding-top: 22px;
  border-top: 1px solid var(--line); font-size: 15px; font-weight: 600; color: var(--accent);
}
.lp-notify-check { width: 20px; height: 20px; border-radius: 50%; flex: none; background: var(--accent); position: relative; }
.lp-notify-check::after { content: ""; position: absolute; left: 7px; top: 5px; width: 4px; height: 9px; border: solid var(--accent-ink); border-width: 0 2px 2px 0; transform: rotate(42deg); }

/* ---------- testimonials ---------- */
.lp-tms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.lp-tm {
  margin: 0; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 30px;
  display: flex; flex-direction: column; gap: 22px;
}
.lp-tm-q { font-family: var(--font-head); font-size: 21px; line-height: 1.4; margin: 0; text-wrap: pretty; }
.lp-root[data-theme="daybreak"] .lp-tm-q { font-style: italic; }
.lp-tm-by { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.lp-tm-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 18px;
  color: var(--accent-ink); background: linear-gradient(150deg, var(--accent), var(--accent2));
}
.lp-tm-by strong { display: block; font-size: 15px; }
.lp-tm-by em { display: block; font-style: normal; font-size: 13px; color: var(--muted); }

/* ---------- cta band ---------- */
.lp-band {
  padding: 96px 0;
  background:
    radial-gradient(70% 120% at 50% 0%, var(--accent-soft), transparent 60%),
    var(--bg2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.lp-band-inner { text-align: center; }
.lp-band-h { font-family: var(--font-head); font-size: clamp(30px, 4vw, 50px); margin: 0 0 14px; font-weight: 700; letter-spacing: -.02em; }
.lp-root[data-theme="daybreak"] .lp-band-h { font-weight: 400; }
.lp-band-sub { font-size: 19px; color: var(--muted); margin: 0 0 30px; }

/* ---------- footer ---------- */
.lp-footer { background: var(--bg2); border-top: 1px solid var(--line); padding: 64px 0 36px; }
.lp-footer-inner { display: grid; grid-template-columns: 1.3fr 2fr; gap: 48px; padding-bottom: 44px; border-bottom: 1px solid var(--line); }
.lp-footer-brand p { color: var(--muted); margin: 16px 0 0; max-width: 320px; }
.lp-footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lp-footer-cols h4 { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin: 0 0 16px; }
.lp-footer-cols a { display: block; color: var(--ink); text-decoration: none; font-weight: 600; font-size: 15px; margin-bottom: 11px; opacity: .85; }
.lp-footer-cols a:hover { color: var(--accent); opacity: 1; }
.lp-footer-base { display: flex; justify-content: space-between; gap: 16px; padding-top: 26px; font-size: 14px; color: var(--muted); flex-wrap: wrap; }

/* ---------- hCaptcha ---------- */
.lp-captcha { margin: 18px 0 4px; min-height: 78px; }
.lp-captcha-fallback { font-size: 13px; color: var(--accent2); margin: 6px 0 0; }

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  .lp-root[data-layout="split"] .lp-hero-inner { grid-template-columns: 1fr; }
  .lp-nav-links { display: none; }
  .lp-steps, .lp-paths, .lp-tms { grid-template-columns: 1fr; }
  .lp-wall-grid, .lp-donate, .lp-footer-inner { grid-template-columns: 1fr; }
  .lp-wall-intro { position: static; }
  .lp-quote { max-width: 100%; }
}
@media (max-width: 560px) {
  .lp-container { padding: 0 20px; }
  .lp-counters { gap: 18px; }
  .lp-counter-div { display: none; }
  .lp-footer-cols { grid-template-columns: 1fr 1fr; }
}

/* ================= Together — brick wall backdrop ================= */
/* The brick + veil live on the page <body> (see the page's own <style>),
   which is the canvas behind everything; transparent sections reveal it. */
.lp-root[data-theme="together"] { background: transparent; }
/* let the peek show through open sections */
.lp-root[data-theme="together"] .lp-hero { background: transparent; }
.lp-root[data-theme="together"] .lp-hero-scrim {
  background: radial-gradient(120% 80% at 50% 0%, rgba(24,19,17,0) 35%, rgba(20,15,12,0.65) 95%);
}
.lp-root[data-theme="together"] .lp-section--alt { background: rgba(30,23,18,0.55); }
.lp-root[data-theme="together"] .lp-band {
  background:
    radial-gradient(70% 120% at 50% 0%, rgba(232,138,75,0.14), transparent 60%),
    rgba(28,21,17,0.55);
}
.lp-root[data-theme="together"] .lp-footer { background: rgba(28,21,17,0.62); }
/* cards: translucent + blur so masonry hints through, text stays crisp */
.lp-root[data-theme="together"] .lp-step,
.lp-root[data-theme="together"] .lp-path-card,
.lp-root[data-theme="together"] .lp-wall-item,
.lp-root[data-theme="together"] .lp-tm,
.lp-root[data-theme="together"] .lp-donate-card,
.lp-root[data-theme="together"] .lp-quote {
  background: rgba(34,26,21,0.74);
  backdrop-filter: blur(6px);
}
.lp-root[data-theme="together"] .lp-path-card.is-warrior { background: rgba(42,32,25,0.76); }

/* ----- brighter, glowing prayer requests ----- */
.lp-root[data-theme="together"] .lp-pill {
  background: rgba(46,34,26,0.66);
  border-color: rgba(232,169,75,0.40);
  color: #F6EADC;
  box-shadow: 0 6px 20px -8px rgba(0,0,0,0.5);
}
.lp-root[data-theme="together"] .lp-pill-dot { background: var(--accent2); }
.lp-root[data-theme="together"] .lp-pill--sm { --o: .62; }
.lp-root[data-theme="together"] .lp-pill--md { --o: .82; }
.lp-root[data-theme="together"] .lp-pill--lg { --o: .98; }
.lp-root[data-theme="together"] .lp-stream-haze { opacity: .6; }

/* ----- hopeful amber "Rising right now" section ----- */
.lp-root[data-theme="together"] #wall {
  --accent: #ECB05A;
  --accent-soft: rgba(236,176,90,0.16);
  background:
    radial-gradient(75% 70% at 82% 12%, rgba(236,176,90,0.12), transparent 60%),
    radial-gradient(60% 60% at 8% 90%, rgba(236,176,90,0.06), transparent 60%);
}
.lp-root[data-theme="together"] #wall .lp-wall-item {
  border-color: rgba(236,176,90,0.18);
}
.lp-root[data-theme="together"] #wall .lp-live-dot {
  background: #ECB05A;
}
/* keep copy crisp where it sits directly on the wall */
.lp-root[data-theme="together"] .lp-h1,
.lp-root[data-theme="together"] .lp-lead,
.lp-root[data-theme="together"] .lp-head .lp-h2,
.lp-root[data-theme="together"] .lp-head .lp-sub,
.lp-root[data-theme="together"] .lp-band-h,
.lp-root[data-theme="together"] .lp-band-sub {
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
}
