/* ═════════════════════════════════════════════════════════════════════════════
   ORO · INHERITED-LAYOUT CORRECTIONS
   Loaded last. Overrides only — it adds no elements of its own.

   This is where corrections to the inherited Webflow export live, so that
   `oro.css` stays enhance-only (operating contract §3.2) and every change here
   can be removed in one line without touching the export.

   Each rule states what it corrects and why.
   ═════════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────────
   1 · "One Token." / "Every Skill." were half-buried
   The two headlines in the wallet section sit behind the card artwork and the
   Learn-to-Earn banner that scroll in front of them. At the inherited offsets
   roughly half of each headline was occluded, which reads as a clipping bug
   rather than as depth.

   Raised by 1.5rem each, keeping their existing relationship to one another.
   NOTE `1rem == 1vw` on this build, so 1.5rem is 1.5vw — it scales with the
   viewport exactly as the inherited offsets do, which is why the correction is
   expressed in the same unit rather than in px.
   ───────────────────────────────────────────────────────────────────────────── */
.wallet-headline-position.s1 { bottom: 27rem; }    /* was 25.5rem */
.wallet-headline-position.s2 { bottom: 31.3rem; }  /* was 29.8rem */

/* ── the last inherited blue that still painted ──────────────────────────────
   oro.css:3666 sets `.wallet-particles { background-color: #6792ff80 }` — a
   literal, so neither the token override nor the generated sweep could reach
   it, and the wallet section's particle glow stayed blue on a gold site.
   Mapped onto the brand core at the same 50% alpha. Overridden here rather
   than edited in place: oro.css is enhance-only (oro.css is inherited and enhance-only). */
.wallet-particles { background-color: rgba(201, 164, 106, .5); }
