:root{
  --bg:#fbf7f2;
  --white:#ffffff;
  --ink:#111111;
  --muted:#5f5f5f;
  --gold:#c9a24a;
  --line:rgba(17,17,17,.12);
  --shadow:0 20px 40px rgba(17,17,17,.10);
  --radius:20px;
  --max:1080px;
 }
 .bm-wrap{
  font-family: Georgia, "Times New Roman", serif;
  color:var(--ink);
  background:linear-gradient(180deg, var(--bg) 0%, #fff 50%, var(--bg) 100%);
  padding:0;
  margin:0;
 }
 .bm-container{
  max-width:var(--max);
  margin:0 auto;
  padding:56px 22px;
 }
 .bm-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:10px 0 26px;
 }
 .bm-brand{
  display:flex;
  align-items:center;
  gap:12px;
  letter-spacing:.02em;
 }
 .bm-brand img{
  width:44px;
  height:44px;
  object-fit:contain;
  border-radius:12px;
 }
 .bm-brand .bm-title{
  font-size:16px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.14em;
 }
 .bm-chip{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size:12px;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.65);
  backdrop-filter: blur(6px);
  white-space:nowrap;
 }
 .bm-hero{
  background:rgba(255,255,255,.70);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:52px 30px 46px;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
 }
 .bm-hero:before{
  content:"";
  position:absolute;
  inset:-40px -40px auto auto;
  width:220px;
  height:220px;
  background:radial-gradient(circle at 30% 30%, rgba(201,162,74,.35), rgba(201,162,74,0) 70%);
  transform:rotate(12deg);
  pointer-events:none;
 }
 .bm-kicker{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:12px;
  color:var(--muted);
  margin:0 0 10px;
 }
 .bm-h1{
  font-size:46px;
  line-height:1.05;
  margin:0 0 14px;
  font-weight:500;
 }
 .bm-h1 .bm-gold{ color:var(--gold); }
 .bm-lede{
  font-size:19px;
  line-height:1.7;
  color:#2a2a2a;
  max-width:760px;
  margin:0 auto 24px;
  text-align:center;
 }
 .bm-center{ text-align:center; }
 .bm-btn{
  display:inline-block;
  text-decoration:none;
  color:var(--ink);
  border:1px solid rgba(17,17,17,.40);
  padding:14px 28px;
  border-radius:12px;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size:14px;
  letter-spacing:.02em;
  background:linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.65));
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
 }
 .bm-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 28px rgba(17,17,17,.12);
  border-color:rgba(201,162,74,.65);
 }
 .bm-section{
  padding:54px 0 0;
 }
 .bm-divider{
  margin:32px auto 0;
  width:min(880px, 100%);
  height:1px;
  background:linear-gradient(90deg, rgba(17,17,17,0), var(--line), rgba(17,17,17,0));
 }
 .bm-quote{
  font-size:34px;
  line-height:1.2;
  margin:0;
  text-align:center;
  font-weight:500;
 }
 .bm-quote em{
  font-style:italic;
 }
 .bm-body{
  text-align:center;
  max-width:820px;
  margin:18px auto 0;
  color:#2a2a2a;
  font-size:18px;
  line-height:1.75;
 }
 .bm-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:26px;
  align-items:center;
  margin-top:28px;
 }
 @media (max-width: 880px){
  .bm-h1{ font-size:38px; }
  .bm-grid{ grid-template-columns: 1fr; }
 }
 .bm-card{
  background:rgba(255,255,255,.72);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px 24px;
  box-shadow:0 18px 34px rgba(17,17,17,.08);
 }
 .bm-h2{
  font-size:30px;
  margin:0 0 10px;
  font-weight:500;
 }
 .bm-sub{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size:13px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--muted);
  margin:0 0 10px;
 }
 .bm-list{
  margin:14px 0 0;
  padding:0;
  list-style:none;
 }
 .bm-list li{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:10px 0;
  border-bottom:1px solid rgba(17,17,17,.08);
 }
 .bm-list li:last-child{ border-bottom:none; }
 .bm-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--gold);
  margin-top:7px;
  flex:0 0 10px;
  box-shadow:0 0 0 4px rgba(201,162,74,.15);
 }
 .bm-list b{
  color:var(--gold);
  font-weight:600;
 }
 .bm-note{
  margin-top:14px;
  color:#2a2a2a;
  font-size:16px;
  line-height:1.6;
  font-style:italic;
 }
 .bm-img{
  width:100%;
  border-radius:22px;
  border:1px solid rgba(17,17,17,.10);
  box-shadow:0 22px 42px rgba(17,17,17,.12);
  overflow:hidden;
  background:#fff;
 }
 .bm-img img{
  width:100%;
  height:auto;
  display:block;
 }
 .bm-auntie{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:26px;
  align-items:center;
  margin-top:26px;
 }
 @media (max-width: 880px){
  .bm-auntie{ grid-template-columns:1fr; }
 }
 .bm-bullets{
  margin:12px 0 0;
  padding-left:18px;
  color:#2a2a2a;
  font-size:17px;
  line-height:1.75;
 }
 .bm-ctaBand{
  margin-top:34px;
  padding:26px;
  border-radius:22px;
  border:1px solid rgba(201,162,74,.35);
  background:linear-gradient(180deg, rgba(201,162,74,.10), rgba(255,255,255,.70));
  text-align:center;
 }
 .bm-ctaBand p{
  margin:0 0 14px;
  font-size:18px;
  line-height:1.7;
  color:#1f1f1f;
 }
 .bm-footer{
  text-align:center;
  padding:44px 0 18px;
  color:rgba(17,17,17,.65);
  font-size:14px;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
 }
The Billionairess Movement™
Luxury-led stewardship • Calm wealth • Real standards
Clarity over chaos
You don’t need more motivation.
You need a higher standard.
The Billionairess Movement™ is a luxury-led stewardship ecosystem for women ready to build wealth, wellness, and legacy—without burnout, chaos, or hustle culture.
This is where clarity replaces overwhelm.
And systems replace survival.
Most women aren’t failing.
They’re over-functioning inside broken patterns.
You don’t need another strategy.
You need to identify what’s quietly draining you—and reset the standard.
That’s where we begin.
We audit patterns across five areas
Five places where your standard either compounds—or costs you.
- Mindset — clarity over chaos
- Health — energy without punishment
- Wealth — systems over strain
- Purpose — direction without noise
- Legacy — sustainability beyond success
Results follow alignment—not effort.
Meet Auntie Amara
The Luxury Truth-Teller inside The Billionairess Movement™
Auntie Amara doesn’t audit people. She audits patterns—in money, wellness, love, and business.
Luxury isn’t loud. It’s clear.
- She tells the truth with velvet delivery.
- She upgrades standards, not stress.
- She keeps it calm, clean, and actionable.
What happens after the check
If you want to go deeper, your next step is the Stewardship Audit™.
The Standard Check™ gives you the first, clean answer: what needs to be upgraded first.
The Stewardship Audit™ expands the diagnosis across all five pillars and creates your correction plan.
No pressure. No push. Just precision.
About the Founder
Angela Nichole
The Billionairess Movement™ was founded to help women stop surviving inside misaligned patterns—and start building legacy through calm systems, clean standards, and stewardship.
If you’ve been carrying too much for too long, this is your reset.
© The Billionairess Movement™ • Luxury is a standard.









