/* -------------------------------------------------------------------------
 * "The Sons We Become" — premium single-book landing page.
 * Scoped under .wvb so it never leaks into the rest of the Wayvarn theme.
 * ---------------------------------------------------------------------- */

.wvb {
  --wvb-navy: #0a1628;
  --wvb-navy-deep: #060e1c;
  --wvb-sand: #f6f1e8;
  --wvb-sand-deep: #ece3d5;
  --wvb-ink: #1d1a17;
  --wvb-muted: #5f594f;
  --wvb-gold: #c9a24d;
  --wvb-gold-soft: #e6c88a;
  --wvb-cream: #f5e7cd;
  font-family: var(--wv-font-body);
  color: var(--wvb-ink);
  background: var(--wvb-sand);
}

.wvb *,
.wvb *::before,
.wvb *::after { box-sizing: border-box; }

.wvb-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.wvb-narrow { max-width: 820px; }

/* ---------------- Typography ---------------- */
.wvb-h1,
.wvb-h2,
.wvb h3 {
  font-family: var(--wv-font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.wvb-h1 {
  margin: 0.5rem 0 1.25rem;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1.02;
  color: #fff;
}
.wvb-h2 {
  margin: 0.5rem 0 1.25rem;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.1;
  color: var(--wvb-ink);
}
.wvb-h2-light { color: #fff; }

.wvb-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--wvb-gold);
}
.wvb-eyebrow-dark { color: #9a7b34; }

.wvb-body {
  margin: 0 0 1.15rem;
  font-size: 1.03rem;
  line-height: 1.85;
  color: var(--wvb-muted);
}
.wvb-body-light { color: rgba(255, 255, 255, 0.78); }

.wvb-link {
  color: #9a7b34;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------------- Sections ---------------- */
.wvb-section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.wvb-section-sand { background: var(--wvb-sand-deep); }
.wvb-section-dark {
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(201, 162, 77, 0.16), transparent 60%),
    var(--wvb-navy);
  color: #fff;
}
.wvb-head { max-width: 46rem; margin-bottom: 3rem; }

/* ---------------- Hero ---------------- */
.wvb-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(4.5rem, 9vw, 8rem);
  background:
    radial-gradient(1000px 620px at 78% 12%, rgba(201, 162, 77, 0.22), transparent 62%),
    linear-gradient(170deg, #0c1a2f 0%, var(--wvb-navy-deep) 100%);
  color: #fff;
}
.wvb-hero-glow {
  position: absolute;
  inset: auto -20% -55% 40%;
  height: 70vw;
  max-height: 720px;
  background: radial-gradient(circle, rgba(201, 162, 77, 0.18), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}
.wvb-hero-grid {
  position: relative;
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 900px) {
  .wvb-hero-grid { grid-template-columns: 1.05fr 0.95fr; }
}

.wvb-tagline {
  margin: 0 0 1.6rem;
  font-family: var(--wv-font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--wvb-cream);
}
.wvb-tagline .wvb-line,
.wvb-lead .wvb-line { display: block; }
.wvb-tagline .wvb-line::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1px;
  margin-right: 0.75rem;
  vertical-align: middle;
  background: var(--wvb-gold);
  opacity: 0.7;
}

.wvb-hero-text {
  max-width: 34rem;
  margin: 0 0 2rem;
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
}
.wvb-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.75rem 0 0;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------------- Buttons ---------------- */
.wvb-btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.wvb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.wvb-btn:hover { transform: translateY(-2px); }
.wvb-btn-primary {
  background: linear-gradient(120deg, var(--wvb-gold), var(--wvb-gold-soft));
  color: #16110a;
  box-shadow: 0 14px 34px -14px rgba(201, 162, 77, 0.85);
}
.wvb-btn-gold {
  background: linear-gradient(120deg, #d7b061, var(--wvb-gold-soft));
  color: #16110a;
  box-shadow: 0 16px 40px -16px rgba(201, 162, 77, 0.9);
  letter-spacing: 0.1em;
}
.wvb-btn-ghost {
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
  background: transparent;
}
.wvb-btn-ghost:hover { background: rgba(255, 255, 255, 0.08); }
.wvb-section-sand .wvb-btn-ghost,
.wvb-section:not(.wvb-section-dark) .wvb-btn-ghost { border-color: rgba(29, 26, 23, 0.28); color: var(--wvb-ink); }
.wvb-btn-block { width: 100%; }

/* ---------------- Book mockup ---------------- */
.wvb-book {
  position: relative;
  margin: 0;
  display: block;
  perspective: 1400px;
}
.wvb-book-lg { max-width: 480px; margin-inline: auto; }
.wvb-book-sm { max-width: 220px; }

.wvb-book-halo {
  position: absolute;
  inset: 8% 4% -6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 77, 0.35), transparent 68%);
  filter: blur(34px);
  pointer-events: none;
}
.wvb-book-frame {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  transform-style: preserve-3d;
  transform: rotateY(var(--wvb-ry, -8deg)) rotateX(var(--wvb-rx, 3deg));
  box-shadow:
    0 40px 80px -30px rgba(0, 0, 0, 0.65),
    0 12px 30px -12px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
  will-change: transform;
}
.wvb-book-lg .wvb-book-frame { animation: wvb-float 7s ease-in-out infinite; }
.wvb-book:hover .wvb-book-frame {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
  box-shadow: 0 52px 96px -30px rgba(0, 0, 0, 0.7);
}
.wvb-book-art {
  display: block;
  width: 100%;
  height: auto;
}
/* Light reflection sweep — sits above the art, never alters the artwork itself. */
.wvb-book-gloss {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0) 38%, rgba(255, 255, 255, 0.34) 50%, rgba(255, 255, 255, 0) 62%);
  transform: translateX(-120%);
  pointer-events: none;
}
.wvb-book-lg .wvb-book-gloss { animation: wvb-sheen 8s ease-in-out infinite; }
.wvb-book:hover .wvb-book-gloss { animation: wvb-sheen 1.4s ease-out; }

@keyframes wvb-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}
@keyframes wvb-sheen {
  0% { transform: translateX(-120%); }
  35%, 100% { transform: translateX(130%); }
}

/* ---------------- Author ---------------- */
.wvb-author-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .wvb-author-grid { grid-template-columns: 0.8fr 1.2fr; }
}
.wvb-author-card {
  padding: 2.25rem;
  border: 1px solid rgba(29, 26, 23, 0.1);
  border-radius: 24px;
  background: #fffdf9;
  box-shadow: 0 30px 60px -40px rgba(10, 22, 40, 0.5);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.wvb-author-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 70px -40px rgba(10, 22, 40, 0.6);
}
.wvb-author-photo {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--wvb-navy), #1c3252);
  border: 3px solid var(--wvb-gold-soft);
}
.wvb-author-photo img { width: 100%; height: 100%; object-fit: cover; }
.wvb-author-initials {
  font-family: var(--wv-font-display);
  font-size: 3rem;
  color: var(--wvb-cream);
}
.wvb-author-name {
  margin: 0;
  font-family: var(--wv-font-display);
  font-size: 1.75rem;
  font-weight: 700;
}
.wvb-author-role {
  margin: 0.25rem 0 1.25rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a7b34;
}
.wvb-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.wvb-tags li {
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(154, 123, 52, 0.35);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #6f5a29;
  background: rgba(201, 162, 77, 0.08);
}

/* ---------------- Lead + quote ---------------- */
.wvb-lead {
  margin: 0 0 2rem;
  font-family: var(--wv-font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--wvb-cream);
}
.wvb-quote {
  margin: 3rem 0;
  padding: 2.25rem 2.5rem;
  border-left: 3px solid var(--wvb-gold);
  border-radius: 0 18px 18px 0;
  background: rgba(255, 255, 255, 0.04);
}
.wvb-quote p {
  margin: 0;
  font-family: var(--wv-font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}
.wvb-quote-strong { margin-top: 1rem !important; font-weight: 700; color: var(--wvb-gold-soft) !important; }
.wvb-quote-strong span { display: block; }

/* ---------------- Cards ---------------- */
.wvb-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .wvb-grid-4, .wvb-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  .wvb-grid-4 { grid-template-columns: repeat(4, 1fr); }
  .wvb-grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.wvb-card {
  position: relative;
  padding: 1.9rem 1.6rem;
  border: 1px solid rgba(29, 26, 23, 0.1);
  border-radius: 20px;
  background: #fffdf9;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.wvb-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--wvb-gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.wvb-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 77, 0.5);
  box-shadow: 0 30px 55px -35px rgba(10, 22, 40, 0.6);
}
.wvb-card:hover::after { transform: scaleX(1); }
.wvb-card-index {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(154, 123, 52, 0.7);
}
.wvb-card h3 {
  margin: 0.6rem 0 0.6rem;
  font-size: 1.4rem;
}
.wvb-card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.75;
  color: var(--wvb-muted);
}
.wvb-card-light { background: #fff; }

.wvb-audience-cta {
  margin-top: 2.25rem;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 24px;
  background: linear-gradient(135deg, var(--wvb-navy) 0%, #16283f 100%);
  color: #fff;
  text-align: center;
}
.wvb-audience-cta h3 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--wvb-cream);
}
.wvb-audience-cta p {
  max-width: 40rem;
  margin: 0 auto 1.75rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
}

/* ---------------- Key reflection ---------------- */
.wvb-reflection {
  position: relative;
  padding: clamp(6rem, 16vw, 12rem) 0;
  background:
    radial-gradient(700px 400px at 25% 25%, rgba(201, 162, 77, 0.2), transparent 60%),
    linear-gradient(180deg, #050b16, #0b1a2e 60%, #050b16);
  color: #fff;
  overflow: hidden;
}
.wvb-reflection-text {
  margin: 0 auto;
  max-width: 26ch;
  font-family: var(--wv-font-display);
  font-size: clamp(1.9rem, 5.2vw, 4rem);
  font-style: italic;
  line-height: 1.28;
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
}
.wvb-word-line { display: block; }
.wvb-word {
  display: inline-block;
  opacity: 0.12;
  transform: translateY(0.18em);
  transition: opacity 0.5s ease, transform 0.5s ease, color 0.5s ease;
}
.wvb-word.is-lit { opacity: 1; transform: translateY(0); }
.wvb-word-line:last-child .wvb-word.is-lit { color: var(--wvb-gold-soft); }

/* ---------------- Preview ---------------- */
.wvb-preview-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .wvb-preview-grid { grid-template-columns: 0.9fr 1.1fr; }
}
.wvb-preview-toc,
.wvb-preview-page {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid rgba(29, 26, 23, 0.12);
  border-radius: 20px;
  background: #fffdf7;
  box-shadow: 0 24px 50px -40px rgba(10, 22, 40, 0.55);
}
.wvb-preview-toc h3,
.wvb-preview-page h3 { margin: 0 0 1.1rem; font-size: 1.35rem; }
.wvb-preview-toc ol { margin: 0; padding-left: 1.15rem; }
.wvb-preview-toc li {
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(29, 26, 23, 0.14);
  font-size: 0.95rem;
  color: var(--wvb-muted);
}
.wvb-preview-toc li:last-child { border-bottom: 0; }
.wvb-preview-page p {
  margin: 0 0 1.1rem;
  font-family: var(--wv-font-display);
  font-size: 1.2rem;
  line-height: 1.85;
  color: #37322b;
}
.wvb-preview-fade {
  margin: 0;
  font-size: 2rem;
  letter-spacing: 0.3em;
  color: rgba(29, 26, 23, 0.25);
}
.wvb-preview-cta {
  margin-top: 2.5rem;
  text-align: center;
}
.wvb-preview-cta h3 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

/* ---------------- Purchase ---------------- */
.wvb-buy-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 900px) { .wvb-buy-grid { grid-template-columns: 1.1fr 0.9fr; } }
.wvb-mini-cover { margin-top: 2rem; }
.wvb-price-card {
  padding: clamp(2rem, 4vw, 2.75rem);
  border: 1px solid rgba(201, 162, 77, 0.35);
  border-radius: 26px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(6px);
  box-shadow: 0 40px 90px -50px rgba(0, 0, 0, 0.9);
}
.wvb-price-kicker {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--wvb-gold);
}
.wvb-price-format {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}
.wvb-price {
  margin: 0.75rem 0 1.5rem;
  font-family: var(--wv-font-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  color: #fff;
}
.wvb-check { margin: 0 0 1.75rem; padding: 0; list-style: none; }
.wvb-check li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.75rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}
.wvb-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--wvb-gold);
  font-weight: 700;
}
.wvb-price-note {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------------- FAQs ---------------- */
.wvb-faqs { display: grid; gap: 0.75rem; }
.wvb-faq {
  padding: 1.15rem 1.5rem;
  border: 1px solid rgba(29, 26, 23, 0.12);
  border-radius: 16px;
  background: #fffdf9;
}
.wvb-faq summary { cursor: pointer; list-style: none; }
.wvb-faq summary::-webkit-details-marker { display: none; }
.wvb-faq summary h3 { display: inline; font-size: 1.15rem; }
.wvb-faq p { margin: 0.85rem 0 0; line-height: 1.8; color: var(--wvb-muted); }

/* ---------------- Final CTA ---------------- */
.wvb-final {
  padding: clamp(5rem, 11vw, 9rem) 0;
  text-align: center;
  background:
    radial-gradient(800px 420px at 50% 0%, rgba(201, 162, 77, 0.22), transparent 62%),
    linear-gradient(180deg, #0b1a2e, #050b16);
  color: #fff;
}
.wvb-final .wvb-body { margin-inline: auto; max-width: 44rem; }
.wvb-final .wvb-btn { margin-top: 1.25rem; }

/* ---------------- Checkout ---------------- */
.wvb-checkout-page { min-height: 70vh; }
.wvb-checkout-grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}
@media (min-width: 900px) { .wvb-checkout-grid { grid-template-columns: 0.85fr 1.15fr; } }

.wvb-order-summary {
  padding: clamp(1.75rem, 3vw, 2.25rem);
  border: 1px solid rgba(201, 162, 77, 0.3);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
}
.wvb-summary-cover { margin: 1.25rem 0; }
.wvb-summary-title {
  margin: 0;
  font-family: var(--wv-font-display);
  font-size: 1.8rem;
  color: #fff;
}
.wvb-summary-author { margin: 0.2rem 0 1.25rem; font-size: 0.9rem; color: var(--wvb-gold); }
.wvb-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 1.5rem 0 0;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
}
.wvb-summary-total strong { font-size: 1.5rem; font-family: var(--wv-font-display); }

.wvb-checkout-card {
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
}
.wvb-form { display: grid; gap: 1.05rem; margin-top: 1.75rem; }
.wvb-field { display: grid; gap: 0.4rem; }
.wvb-field span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.wvb-field input,
.wvb-field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.98rem;
  font-family: inherit;
}
.wvb-field select option { color: #10203a; }
.wvb-field input:focus,
.wvb-field select:focus {
  outline: none;
  border-color: var(--wvb-gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 77, 0.2);
}
.wvb-hp { position: absolute; left: -9999px; }

.wvb-methods {
  display: grid;
  gap: 0.7rem;
  margin: 0.35rem 0 0.5rem;
  padding: 0;
  border: 0;
}
.wvb-methods legend {
  padding: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.wvb-method {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.wvb-method:hover { border-color: rgba(201, 162, 77, 0.6); }
.wvb-method.is-disabled { opacity: 0.45; cursor: not-allowed; }
.wvb-method strong { display: block; color: #fff; font-size: 0.98rem; }
.wvb-method small { display: block; margin-top: 0.2rem; color: rgba(255, 255, 255, 0.6); font-size: 0.85rem; }

.wvb-form-status { margin: 0; min-height: 1.4rem; font-size: 0.92rem; color: var(--wvb-gold-soft); }
.wvb-form-status.is-error { color: #ffb4a8; }
.wvb-alert {
  margin: 1.25rem 0 0;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  font-size: 0.92rem;
}
.wvb-alert-error { background: rgba(255, 120, 100, 0.14); color: #ffc4ba; }
.wvb-fineprint { margin: 0.5rem 0 0; font-size: 0.8rem; line-height: 1.7; color: rgba(255, 255, 255, 0.45); }

/* ---------------- Confirmation ---------------- */
.wvb-thanks { text-align: center; }
.wvb-thanks-cover { display: flex; justify-content: center; margin-bottom: 2rem; }
.wvb-receipt {
  display: grid;
  gap: 0.75rem;
  max-width: 30rem;
  margin: 2.5rem auto 1.5rem;
  text-align: left;
}
.wvb-receipt > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.wvb-receipt dt { margin: 0; font-size: 0.85rem; color: rgba(255, 255, 255, 0.55); }
.wvb-receipt dd { margin: 0; font-weight: 600; color: #fff; font-size: 0.9rem; text-align: right; }

/* ---------------- Scroll reveal ---------------- */
.wvb-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--wvb-delay, 0) * 90ms);
}
.wvb-reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .wvb *,
  .wvb *::before,
  .wvb *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  .wvb-reveal { opacity: 1; transform: none; }
  .wvb-word { opacity: 1; transform: none; }
}
